From b7e5addcd0c55ff75dd08e21577bda630b48bd52 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Sun, 3 May 2020 16:40:56 +0200 Subject: [PATCH 1/5] use alternative-identifier instead of identifier --- app/components/doi-alternate-identifier.js | 2 +- app/components/doi-alternate-identifiers.js | 8 +- app/controllers/dois/show/edit.js | 4 +- app/controllers/repositories/show/dois/new.js | 4 +- app/helpers/doi-form-errors.js | 6 +- ...{identifier.js => alternate-identifier.js} | 0 app/models/doi.js | 2 +- .../components/doi-alternate-identifiers.hbs | 18 +-- .../create-draft-doi_4112297062/recording.har | 128 +++++++++--------- .../update-draft-doi_1508057167/recording.har | 18 +-- .../update-draft-doi_1508057167/recording.har | 14 +- .../recording.har | 12 +- .../recording.har | 12 +- tests/factories/doi.js | 6 +- .../doi-alternate-identifier-test.js | 2 +- ...r-test.js => alternate-identifier-test.js} | 4 +- 16 files changed, 120 insertions(+), 120 deletions(-) rename app/models/{identifier.js => alternate-identifier.js} (100%) rename tests/unit/models/{identifier-test.js => alternate-identifier-test.js} (73%) diff --git a/app/components/doi-alternate-identifier.js b/app/components/doi-alternate-identifier.js index d14364d32..9adac3bc0 100644 --- a/app/components/doi-alternate-identifier.js +++ b/app/components/doi-alternate-identifier.js @@ -50,7 +50,7 @@ export default Component.extend({ this.set('alternateIdentifierTypes', alternateIdentifierTypeList); }, deleteIdentifier() { - this.model.get('identifiers').removeObject(this.fragment); + this.model.get('alternateIdentifiers').removeObject(this.fragment); }, }, }); diff --git a/app/components/doi-alternate-identifiers.js b/app/components/doi-alternate-identifiers.js index 71fc175ab..3a52d8f81 100644 --- a/app/components/doi-alternate-identifiers.js +++ b/app/components/doi-alternate-identifiers.js @@ -6,14 +6,14 @@ export default Component.extend({ didReceiveAttrs() { this._super(...arguments); - if (!this.model.get('identifiers')) { - this.model.set('identifiers', []); + if (!this.model.get('alternateIdentifiers')) { + this.model.set('alternateIdentifiers', []); } }, actions: { - addIdentifier() { - this.model.get('identifiers').createFragment(); + addAlternateIdentifier() { + this.model.get('alternateIdentifiers').createFragment(); this.set('showAlternateIdentifiers', true); }, toggleAlternateIdentifiers() { diff --git a/app/controllers/dois/show/edit.js b/app/controllers/dois/show/edit.js index f9cf994a7..b3d6cb2b0 100644 --- a/app/controllers/dois/show/edit.js +++ b/app/controllers/dois/show/edit.js @@ -106,8 +106,8 @@ export default Controller.extend({ })); // only store identifiers with a text - doi.set('identifiers', A(doi.get('identifiers')).filter(function(identifier) { - return !isBlank(identifier.identifier); + doi.set('alternateIdentifiers', A(doi.get('alternateIdentifiers')).filter(function(alternateIdentifier) { + return !isBlank(alternateIdentifier.identifier); })); // only store rights with a text diff --git a/app/controllers/repositories/show/dois/new.js b/app/controllers/repositories/show/dois/new.js index db197a871..69fee0e56 100644 --- a/app/controllers/repositories/show/dois/new.js +++ b/app/controllers/repositories/show/dois/new.js @@ -93,8 +93,8 @@ export default Controller.extend({ })); // only store identifiers with a text - doi.set('identifiers', A(doi.get('identifiers')).filter(function(identifier) { - return !isBlank(identifier.identifier); + doi.set('alternateIdentifiers', A(doi.get('alternateIdentifiers')).filter(function(alternateIdentifier) { + return !isBlank(alternateIdentifier.identifier); })); // only store rights with a text diff --git a/app/helpers/doi-form-errors.js b/app/helpers/doi-form-errors.js index dcdffd893..9590d629f 100644 --- a/app/helpers/doi-form-errors.js +++ b/app/helpers/doi-form-errors.js @@ -27,9 +27,9 @@ export function doiFormErrors([ model ]) { errorAttributes = errorAttributes.concat(contributor.validations.errors.mapBy('attribute')); }); } - if (model.identifiers) { - model.identifiers.forEach((identifier) => { - errorAttributes = errorAttributes.concat(identifier.validations.errors.mapBy('attribute')); + if (model.alternateIdentifiers) { + model.alternateIdentifiers.forEach((alternateIdentifier) => { + errorAttributes = errorAttributes.concat(alternateIdentifier.validations.errors.mapBy('attribute')); }); } if (model.subjects) { diff --git a/app/models/identifier.js b/app/models/alternate-identifier.js similarity index 100% rename from app/models/identifier.js rename to app/models/alternate-identifier.js diff --git a/app/models/doi.js b/app/models/doi.js index 32a201db7..1b0e74025 100644 --- a/app/models/doi.js +++ b/app/models/doi.js @@ -131,7 +131,7 @@ export default DS.Model.extend(Validations, { publicationYear: DS.attr('number'), subjects: fragmentArray('subject', { defaultValue: [] }), contributors: fragmentArray('contributor', { defaultValue: [] }), - identifiers: fragmentArray('identifier', { defaultValue: [] }), + alternateIdentifiers: fragmentArray('alternateIdentifier', { defaultValue: [] }), dates: fragmentArray('date', { defaultValue: [] }), language: DS.attr('string'), types: DS.attr(), diff --git a/app/templates/components/doi-alternate-identifiers.hbs b/app/templates/components/doi-alternate-identifiers.hbs index 1acb5d1cd..d74889acf 100644 --- a/app/templates/components/doi-alternate-identifiers.hbs +++ b/app/templates/components/doi-alternate-identifiers.hbs @@ -3,22 +3,22 @@
An identifier or identifiers other than the primary Identifier applied to the resource being registered.
{{#if showAlternateIdentifiers}} - {{#each model.identifiers as |identifier index|}} - + {{#each model.alternateIdentifiers as |alternateIdentifier index|}} + {{/each}} - {{#if (lte model.identifiers.length 4)}} - {{fa-icon "plus"}} Add {{if (gt model.identifiers.length 1) "another "}} alternate identifier + {{#if (lte model.alternateIdentifiers.length 4)}} + {{fa-icon "plus"}} Add {{if (gt model.alternateIdentifiers.length 1) "another "}} alternate identifier {{/if}} - {{#if (gt model.identifiers.length 0)}} - {{fa-icon "eye-slash"}} Hide {{pluralize model.identifiers.length 'alternate identifier'}} + {{#if (gt model.alternateIdentifiers.length 0)}} + {{fa-icon "eye-slash"}} Hide {{pluralize model.alternateIdentifiers.length 'alternate identifier'}} {{/if}} {{else}} - {{#if (gt model.identifiers.length 0)}} - {{fa-icon "eye"}} Show {{pluralize model.identifiers.length 'alternate identifier'}} + {{#if (gt model.alternateIdentifiers.length 0)}} + {{fa-icon "eye"}} Show {{pluralize model.alternateIdentifiers.length 'alternate identifier'}} {{else}} - {{fa-icon "plus"}} Add alternate identifier + {{fa-icon "plus"}} Add alternate identifier {{/if}} {{/if}}
diff --git a/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har index 5dcf471d2..a84694048 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har @@ -578,70 +578,6 @@ "wait": 103 } }, - { - "_id": "7572737785c9e8fbf2e8344c5277741f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 648, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, - { - "name": "accept", - "value": "application/vnd.api+json" - } - ], - "headersSize": 780, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" - }, - "response": { - "bodySize": 1925, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1925, - "text": "{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"prefix\":\"10.80225\",\"suffix\":\"2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvMlBXRi1SWTg4PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUvPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcy8+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T10:30:59.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:30:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 201, - "statusText": "Created" - }, - "startedDateTime": "2020-04-23T10:30:59.275Z", - "time": 558, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 558 - } - }, { "_id": "fe47109f63d661c5d5ff1d67928c35b8", "_order": 1, @@ -917,6 +853,70 @@ "ssl": -1, "wait": 156 } + }, + { + "_id": "b4f1065d3b90a2f7503fedbdc6c38523", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 657, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" + }, + { + "name": "accept", + "value": "application/vnd.api+json" + } + ], + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" + }, + "response": { + "bodySize": 1925, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1925, + "text": "{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"prefix\":\"10.80225\",\"suffix\":\"2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvMlBXRi1SWTg4PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUvPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcy8+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 201, + "statusText": "Created" + }, + "startedDateTime": "2020-05-03T14:16:01.629Z", + "time": 197, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 197 + } } ], "pages": [], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har index 66fea0861..7dfd883e1 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har @@ -258,11 +258,11 @@ } }, { - "_id": "164fd1f9c1a544258a60593c266492ea", + "_id": "a45d2740466d080dee68d352545686ff", "_order": 0, "cache": {}, "request": { - "bodySize": 883, + "bodySize": 892, "cookies": [], "headers": [ { @@ -280,17 +280,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"confirmDoi\":null,\"url\":\"https://support.datacite.org/docs/doi-states\",\"creators\":[{\"name\":\"\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"contributorType\":\"Other\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"identifiers\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"landingPage\":null,\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"edit\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"confirmDoi\":null,\"url\":\"https://support.datacite.org/docs/doi-states\",\"creators\":[{\"name\":\"\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"contributorType\":\"Other\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"landingPage\":null,\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"edit\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois/10.80225%2F9fxk-aa96" }, "response": { - "bodySize": 2319, + "bodySize": 2352, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2319, - "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\"}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:35:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2352, + "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\"}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:15:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -309,8 +309,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T10:35:15.255Z", - "time": 216, + "startedDateTime": "2020-05-03T14:15:59.738Z", + "time": 213, "timings": { "blocked": -1, "connect": -1, @@ -318,7 +318,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 216 + "wait": 213 } } ], diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har index 4529734f4..c994a9942 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har @@ -258,11 +258,11 @@ } }, { - "_id": "27cdabd4a301babebcf10cb93ac1c18f", + "_id": "ad0daf7cd8e374601fb64684e92448a3", "_order": 0, "cache": {}, "request": { - "bodySize": 723, + "bodySize": 732, "cookies": [], "headers": [ { @@ -280,7 +280,7 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"confirmDoi\":null,\"url\":\"http://datacite228\",\"creators\":[{\"name\":\"\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"landingPage\":null,\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"edit\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"confirmDoi\":null,\"url\":\"http://datacite940\",\"creators\":[{\"name\":\"\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"landingPage\":null,\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"edit\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois/10.0330%2F3nym-s568" @@ -290,7 +290,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1998, - "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite228\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-25T17:16:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite940\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:39:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -309,8 +309,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-25T17:16:08.457Z", - "time": 222, + "startedDateTime": "2020-05-03T14:39:00.619Z", + "time": 225, "timings": { "blocked": -1, "connect": -1, @@ -318,7 +318,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 222 + "wait": 225 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har index 4e6397ab5..97b74a883 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har @@ -76,7 +76,7 @@ } }, { - "_id": "585236daaeb22c94e1e3e40fbd2c0bdc", + "_id": "53e2c4d78991c8439a233dfe6c357d0a", "_order": 0, "cache": {}, "request": { @@ -98,7 +98,7 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"dc\",\"attributes\":{\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"logoUrl\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"website\":\"https://datacite.org\",\"isActive\":true,\"passwordInput\":null,\"nonProfitStatus\":\"non-profit\",\"hasPassword\":true,\"keepPassword\":true,\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"twitterHandle\":\"@datacite335\",\"billingInformation\":{\"city\":\"\"},\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"secondaryServiceContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"joined\":null,\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"type\":\"providers\"}}" + "text": "{\"data\":{\"id\":\"dc\",\"attributes\":{\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"logoUrl\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"website\":\"https://datacite.org\",\"isActive\":true,\"passwordInput\":null,\"nonProfitStatus\":\"non-profit\",\"hasPassword\":true,\"keepPassword\":true,\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"twitterHandle\":\"@datacite757\",\"billingInformation\":{\"city\":\"\"},\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"secondaryServiceContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"joined\":null,\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"type\":\"providers\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/providers/dc" @@ -108,7 +108,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1753, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite335\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-25T17:16:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}}" + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite757\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-03T14:35:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-25T17:16:12.665Z", - "time": 159, + "startedDateTime": "2020-05-03T14:35:53.094Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 159 + "wait": 150 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har index 3b36b2662..2c53ecc71 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har @@ -135,7 +135,7 @@ } }, { - "_id": "fd1d75fd94d83cc25372764b24c1dadc", + "_id": "06fd3f3fb400924f87e26aba6b3e88e2", "_order": 0, "cache": {}, "request": { @@ -157,7 +157,7 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"datacite.test\",\"attributes\":{\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"name\":\"DataCite Test Repository\",\"alternateName\":null,\"symbol\":\"DATACITE.TEST\",\"globusUuid\":null,\"re3data\":null,\"domains\":\"*\",\"systemEmail\":\"mfenner@datacite.org\",\"salesforceId\":null,\"year\":2017,\"description\":\"datacite864\",\"language\":[],\"certificate\":[],\"serviceContact\":{},\"issn\":{\"issnl\":null,\"electronic\":null,\"print\":null},\"url\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"software\":null,\"isActive\":true,\"passwordInput\":null,\"hasPassword\":true,\"keepPassword\":true,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"type\":\"providers\",\"id\":\"datacite\"}}},\"type\":\"repositories\"}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"attributes\":{\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"name\":\"DataCite Test Repository\",\"alternateName\":null,\"symbol\":\"DATACITE.TEST\",\"globusUuid\":null,\"re3data\":null,\"domains\":\"*\",\"systemEmail\":\"mfenner@datacite.org\",\"salesforceId\":null,\"year\":2017,\"description\":\"datacite850\",\"language\":[],\"certificate\":[],\"serviceContact\":{},\"issn\":{\"issnl\":null,\"electronic\":null,\"print\":null},\"url\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"software\":null,\"isActive\":true,\"passwordInput\":null,\"hasPassword\":true,\"keepPassword\":true,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"type\":\"providers\",\"id\":\"datacite\"}}},\"type\":\"repositories\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/repositories/datacite.test" @@ -167,7 +167,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 703, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite864\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-25T17:16:21.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite850\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-03T14:39:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-25T17:16:21.130Z", - "time": 194, + "startedDateTime": "2020-05-03T14:39:11.124Z", + "time": 161, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 194 + "wait": 161 } } ], diff --git a/tests/factories/doi.js b/tests/factories/doi.js index e80af4e57..d209742ef 100644 --- a/tests/factories/doi.js +++ b/tests/factories/doi.js @@ -4,8 +4,8 @@ FactoryGuy.define('doi', { default: { doi: '10.80225/rph240519', url: 'https://datacite.org', - identifiers: [ { - 'doi': 'https://handle.test.datacite.org/10.80225/rph240519', + alternateIdentifiers: [ { + 'doi': 'https://handle.test.datacite.org/10.80225/rph24', } ], creators: FactoryGuy.hasMany('creator'), contributors: FactoryGuy.hasMany('contributor'), @@ -70,7 +70,7 @@ FactoryGuy.define('title', { }, }); -FactoryGuy.define('identifier', { +FactoryGuy.define('alternateIdentifier', { default: { identifier: 'https://handle.test.datacite.org/10.70048/rph240519', identifierType: 'DOI', diff --git a/tests/integration/components/doi-alternate-identifier-test.js b/tests/integration/components/doi-alternate-identifier-test.js index adb504814..9a8dedbfb 100644 --- a/tests/integration/components/doi-alternate-identifier-test.js +++ b/tests/integration/components/doi-alternate-identifier-test.js @@ -11,7 +11,7 @@ module('Integration | Component | doi alternate-identifier', function(hooks) { test('it renders', async function(assert) { this.set('model', make('doi')); - this.set('fragment', make('identifier')); + this.set('fragment', make('alternateIdentifier')); await render(hbs`{{doi-alternate-identifier model=model fragment=fragment index=0}}`); assert.dom('*').hasText('Alternate Identifier Type'); diff --git a/tests/unit/models/identifier-test.js b/tests/unit/models/alternate-identifier-test.js similarity index 73% rename from tests/unit/models/identifier-test.js rename to tests/unit/models/alternate-identifier-test.js index 7a8d1f464..eac761b7a 100644 --- a/tests/unit/models/identifier-test.js +++ b/tests/unit/models/alternate-identifier-test.js @@ -2,11 +2,11 @@ import { module, test } from 'qunit'; import { setupTest } from 'ember-qunit'; import { run } from '@ember/runloop'; -module('Unit | Model | identifier', function(hooks) { +module('Unit | Model | alternate-identifier', function(hooks) { setupTest(hooks); test('it exists', function(assert) { - let model = run(() => this.owner.lookup('service:store').createRecord('identifier')); + let model = run(() => this.owner.lookup('service:store').createRecord('alternate-identifier')); assert.ok(!!model); }); }); \ No newline at end of file From dc7f5ee15c8826de5893186db9fbef1c0b7bfefd Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Sun, 3 May 2020 17:12:19 +0200 Subject: [PATCH 2/5] use alternateIdentifier property names --- app/components/doi-alternate-identifier.js | 12 ++++++------ app/models/alternate-identifier.js | 6 +++--- .../components/doi-alternate-identifier.hbs | 8 ++++---- tests/factories/doi.js | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/app/components/doi-alternate-identifier.js b/app/components/doi-alternate-identifier.js index 9adac3bc0..05fa01c9a 100644 --- a/app/components/doi-alternate-identifier.js +++ b/app/components/doi-alternate-identifier.js @@ -34,19 +34,19 @@ export default Component.extend({ if (!this.selected.includes(select.searchText)) { this.alternateIdentifierTypes.push(select.searchText); select.actions.choose(select.searchText); - this.fragment.set('identifierType', select.searchText); + this.fragment.set('alternativeIdentifierType', select.searchText); this.set('alternateIdentifierTypes', alternateIdentifierTypeList); } } }, - updateIdentifier(value) { - this.fragment.set('identifier', value); + updateAlternateIdentifier(value) { + this.fragment.set('alternateIdentifier', value); }, - updateIdentifierType(value) { - this.fragment.set('identifierType', value); + updateAlternateIdentifierType(value) { + this.fragment.set('alternativeIdentifierType', value); }, selectAlternateIdentifierType(alternateIdentifierType) { - this.fragment.set('identifierType', alternateIdentifierType); + this.fragment.set('alternativeIdentifierType', alternateIdentifierType); this.set('alternateIdentifierTypes', alternateIdentifierTypeList); }, deleteIdentifier() { diff --git a/app/models/alternate-identifier.js b/app/models/alternate-identifier.js index 9c258556e..0322721e8 100644 --- a/app/models/alternate-identifier.js +++ b/app/models/alternate-identifier.js @@ -5,7 +5,7 @@ import { computed } from '@ember/object'; import { isBlank } from '@ember/utils'; const Validations = buildValidations({ - identifierType: [ + alternateIdentifierType: [ validator('presence', { presence: true, message: 'Alternate Identifier must include Identifier Type', @@ -17,6 +17,6 @@ const Validations = buildValidations({ }); export default Fragment.extend(Validations, { - identifier: DS.attr('string', { defaultValue: null }), - identifierType: DS.attr('string', { defaultValue: null }), + alternateIdentifier: DS.attr('string', { defaultValue: null }), + alternateIdentifierType: DS.attr('string', { defaultValue: null }), }); diff --git a/app/templates/components/doi-alternate-identifier.hbs b/app/templates/components/doi-alternate-identifier.hbs index fbef59ae4..b0d68380b 100644 --- a/app/templates/components/doi-alternate-identifier.hbs +++ b/app/templates/components/doi-alternate-identifier.hbs @@ -1,7 +1,7 @@
- + - {{fa-icon "trash"}} + {{fa-icon "trash"}}
@@ -11,11 +11,11 @@
{{#form.element controlType="power-select" - value=fragment.identifierType + value=fragment.alternateIdentifierType helpText="The type of Alternate Identifier." options=alternateIdentifierTypeList disabled=controlledIdentifierType - destination=fragment.identifierType as |el| + destination=fragment.alternateIdentifierType as |el| }} {{el.control onChange=(action "selectAlternateIdentifierType") diff --git a/tests/factories/doi.js b/tests/factories/doi.js index d209742ef..b8075cde7 100644 --- a/tests/factories/doi.js +++ b/tests/factories/doi.js @@ -72,8 +72,8 @@ FactoryGuy.define('title', { FactoryGuy.define('alternateIdentifier', { default: { - identifier: 'https://handle.test.datacite.org/10.70048/rph240519', - identifierType: 'DOI', + alternateIdentifier: 'https://handle.test.datacite.org/10.70048/rph240519', + alternateIdentifierType: 'DOI', }, }); From 21569e131d86aaaa958376ed3f9bd243a61cd8ae Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Mon, 4 May 2020 19:10:31 +0200 Subject: [PATCH 3/5] update recordings --- .../visiting-prefixes_435827572/recording.har | 14 +- .../recording.har | 14 +- .../recording.har | 14 +- .../visiting-dois_3774702605/recording.har | 14 +- .../recording.har | 44 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 22 +- .../visiting-users_37556140/recording.har | 10 +- .../is-logged-in_3542225560/recording.har | 26 +- .../visiting-homepage_882376104/recording.har | 26 +- .../visiting-info_3527359880/recording.har | 26 +- .../visiting-prefixes_435827572/recording.har | 38 +- .../recording.har | 38 +- .../recording.har | 252 --- .../create-draft-doi_4112297062/recording.har | 925 ----------- .../delete-draft-doi_1403517569/recording.har | 521 ------ .../update-draft-doi_1508057167/recording.har | 62 +- .../visiting-dois_3774702605/recording.har | 38 +- .../recording.har | 38 +- .../recording.har | 46 +- .../recording.har | 82 +- .../recording.har | 44 +- .../recording.har | 398 ----- .../recording.har | 398 ----- .../recording.har | 398 ----- .../recording.har | 398 ----- .../recording.har | 398 ----- .../recording.har | 204 +-- .../recording.har | 110 +- .../recording.har | 184 +-- .../recording.har | 398 ----- .../recording.har | 398 ----- .../recording.har | 216 +-- .../recording.har | 266 ++-- .../recording.har | 202 ++- .../recording.har | 332 ++-- .../recording.har | 200 +-- .../recording.har | 148 +- .../recording.har | 204 +-- .../recording.har | 186 +-- .../recording.har | 246 ++- .../recording.har | 326 +++- .../recording.har | 112 +- .../recording.har | 154 +- .../recording.har | 242 +-- .../recording.har | 110 +- .../recording.har | 146 -- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 38 +- .../recording.har | 46 +- .../recording.har | 168 +- .../recording.har | 22 +- .../recording.har | 22 +- .../visiting-users_37556140/recording.har | 34 +- .../is-logged-in_3542225560/recording.har | 26 +- .../visiting-homepage_882376104/recording.har | 26 +- .../visiting-info_3527359880/recording.har | 26 +- .../visiting-prefixes_435827572/recording.har | 38 +- .../recording.har | 38 +- .../recording.har | 38 +- .../visiting-dois_3774702605/recording.har | 38 +- .../recording.har | 44 +- .../recording.har | 14 +- .../recording.har | 26 +- .../recording.har | 14 +- .../recording.har | 925 +---------- .../recording.har | 26 +- .../recording.har | 808 +++++----- .../recording.har | 26 +- .../recording.har | 14 +- .../recording.har | 26 +- .../recording.har | 38 +- .../recording.har | 46 +- .../recording.har | 54 +- .../recording.har | 26 +- .../recording.har | 22 +- .../visiting-users_37556140/recording.har | 34 +- .../is-logged-in_3542225560/recording.har | 26 +- .../visiting-homepage_882376104/recording.har | 26 +- .../visiting-info_3527359880/recording.har | 26 +- .../visiting-prefixes_435827572/recording.har | 38 +- .../recording.har | 38 +- .../recording.har | 38 +- .../visiting-dois_3774702605/recording.har | 38 +- .../recording.har | 44 +- .../recording.har | 133 +- .../recording.har | 14 +- .../recording.har | 470 +----- .../recording.har | 22 +- .../recording.har | 26 +- .../recording.har | 14 +- .../recording.har | 40 +- .../recording.har | 88 +- .../recording.har | 46 +- .../recording.har | 28 +- .../recording.har | 26 +- .../visiting-users_37556140/recording.har | 36 +- .../recording.har | 8 +- .../recording.har | 8 +- .../is-logged-in_3542225560/recording.har | 8 +- .../visiting-homepage_882376104/recording.har | 8 +- .../visiting-info_3527359880/recording.har | 20 +- .../visiting-members_3369106031/recording.har | 14 +- .../visiting-prefixes_435827572/recording.har | 14 +- .../recording.har | 14 +- .../recording.har | 398 ----- .../recording.har | 62 +- .../recording.har | 66 +- .../update-draft-doi_1508057167/recording.har | 68 +- .../recording.har | 108 +- .../visiting-dois_3774702605/recording.har | 14 +- .../recording.har | 44 +- .../recording.har | 10 +- .../recording.har | 36 +- .../recording.har | 14 +- .../recording.har | 26 +- .../assign-a-prefix_1946406289/recording.har | 34 +- .../recording.har | 88 +- .../recording.har | 8 +- .../recording.har | 8 +- .../recording.har | 8 +- .../new-provider-form_32901344/recording.har | 24 +- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 10 +- .../recording.har | 1409 +---------------- .../recording.har | 20 +- .../recording.har | 20 +- .../recording.har | 8 +- .../recording.har | 772 ++++----- .../recording.har | 22 +- .../recording.har | 26 +- .../recording.har | 26 +- .../recording.har | 36 +- .../recording.har | 38 +- .../recording.har | 38 +- .../recording.har | 90 +- .../recording.har | 160 +- .../recording.har | 26 +- .../recording.har | 22 +- .../visiting-users_37556140/recording.har | 10 +- .../is-logged-in_3542225560/recording.har | 14 +- .../visiting-homepage_882376104/recording.har | 56 +- .../visiting-info_3527359880/recording.har | 14 +- .../visiting-prefixes_435827572/recording.har | 26 +- .../recording.har | 72 +- .../recording.har | 26 +- .../visiting-dois_3774702605/recording.har | 72 +- .../recording.har | 44 +- .../recording.har | 20 +- .../recording.har | 66 +- .../recording.har | 20 +- .../recording.har | 20 +- .../recording.har | 66 +- .../recording.har | 66 +- .../recording.har | 20 +- .../recording.har | 66 +- .../recording.har | 66 +- .../recording.har | 26 +- .../visiting-users_37556140/recording.har | 18 +- testem-electron.js | 31 - 174 files changed, 5062 insertions(+), 12458 deletions(-) delete mode 100644 recordings/Acceptance-client_admin-admin_1084834870/visiting-repositories_601244364/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/delete-draft-doi_1403517569/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-Alternate-Identfier_2433792489/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-format-version-and-size_455109108/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-references_341417744/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-related-Identifier_1709869259/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-rights_3825392370/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-_2666003018/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-version-and-size_1955588052/recording.har delete mode 100644 recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-for-a-specific-doi_190666145/recording.har delete mode 100644 recordings/Acceptance-staff_admin-doi_1134964664/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har delete mode 100644 testem-electron.js diff --git a/recordings/Acceptance-anonymous-admin_3497805088/visiting-prefixes_435827572/recording.har b/recordings/Acceptance-anonymous-admin_3497805088/visiting-prefixes_435827572/recording.har index 7b6a5c8a9..5d7b13642 100644 --- a/recordings/Acceptance-anonymous-admin_3497805088/visiting-prefixes_435827572/recording.har +++ b/recordings/Acceptance-anonymous-admin_3497805088/visiting-prefixes_435827572/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | admin/visiting prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -75,11 +75,11 @@ "url": "https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 30811, + "bodySize": 28695, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30811, - "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1978},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":289},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":300},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":283},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":165},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":158},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":131},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":129},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":120},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":93},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":64},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":55},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":54},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":53},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":51},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":38}],\"clients\":[{\"id\":\"cdl.ual\",\"title\":\"University of Alberta Libraries\",\"count\":13},{\"id\":\"tib.kisti\",\"title\":\"Korea Institute of Science and Technology Information\",\"count\":9},{\"id\":\"bl.imperial\",\"title\":\"Imperial College London\",\"count\":6},{\"id\":\"cdl.ucsd\",\"title\":\"UCSD\",\"count\":5},{\"id\":\"inist.ifremer\",\"title\":\"Institut Français de Recherche pour l'Exploitation de la Mer\",\"count\":5},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":4},{\"id\":\"ands.centre-8\",\"title\":\"CSIRO\",\"count\":3},{\"id\":\"ands.centre14\",\"title\":\"Australian National Data Service\",\"count\":3},{\"id\":\"bibtag.test\",\"title\":\"Workshop Test Account\",\"count\":3},{\"id\":\"bl.lincoln\",\"title\":\"University of Lincoln\",\"count\":3},{\"id\":\"bl.old-api\",\"title\":\"BL's DOI service prototype\",\"count\":3},{\"id\":\"dk.dc\",\"title\":\"DTIC Test Datacenter\",\"count\":3},{\"id\":\"nrct.db1\",\"title\":\"NRCT Data Center\",\"count\":3},{\"id\":\"purdue.ezid\",\"title\":\"PURDUE EZID\",\"count\":3},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" + "size": 28695, + "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1988},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":288},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -98,8 +98,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:49.747Z", - "time": 227, + "startedDateTime": "2020-05-04T16:39:23.126Z", + "time": 187, "timings": { "blocked": -1, "connect": -1, @@ -107,7 +107,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 227 + "wait": 187 } } ], diff --git a/recordings/Acceptance-anonymous-admin_3497805088/visiting-providers_1061836054/recording.har b/recordings/Acceptance-anonymous-admin_3497805088/visiting-providers_1061836054/recording.har index 8fa8e8359..944a64423 100644 --- a/recordings/Acceptance-anonymous-admin_3497805088/visiting-providers_1061836054/recording.har +++ b/recordings/Acceptance-anonymous-admin_3497805088/visiting-providers_1061836054/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | admin/visiting providers", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -83,11 +83,11 @@ "url": "https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 38580, + "bodySize": 39345, "content": { "mimeType": "application/json; charset=utf-8", - "size": 38580, - "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-03-19T05:10:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}},{\"id\":\"brown\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brown University Library\",\"displayName\":\"Brown University Library\",\"symbol\":\"BROWN\",\"website\":\"https://library.brown.edu/\",\"systemEmail\":\"bdr@brown.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05gq02987\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-05-31T13:54:32.000Z\",\"updated\":\"2019-08-13T14:29:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70139\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":408,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":123},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":243},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":141},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":8},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":401},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 39345, + "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-05-04T03:08:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"ardcanu\",\"type\":\"providers\"},{\"id\":\"jbtest\",\"type\":\"providers\"},{\"id\":\"uc\",\"type\":\"providers\"},{\"id\":\"jbtestwo\",\"type\":\"providers\"},{\"id\":\"jbthree\",\"type\":\"providers\"},{\"id\":\"ardcliz\",\"type\":\"providers\"},{\"id\":\"jbfive\",\"type\":\"providers\"},{\"id\":\"lwone\",\"type\":\"providers\"},{\"id\":\"lwardct\",\"type\":\"providers\"},{\"id\":\"tardc\",\"type\":\"providers\"},{\"id\":\"tcdu\",\"type\":\"providers\"},{\"id\":\"tunsw\",\"type\":\"providers\"},{\"id\":\"tjcu\",\"type\":\"providers\"},{\"id\":\"tlatrobe\",\"type\":\"providers\"},{\"id\":\"taad\",\"type\":\"providers\"},{\"id\":\"tuwa\",\"type\":\"providers\"},{\"id\":\"tcsiro\",\"type\":\"providers\"},{\"id\":\"tmonash\",\"type\":\"providers\"},{\"id\":\"tala\",\"type\":\"providers\"},{\"id\":\"tanu\",\"type\":\"providers\"},{\"id\":\"tdpaw\",\"type\":\"providers\"},{\"id\":\"taic\",\"type\":\"providers\"},{\"id\":\"tansto\",\"type\":\"providers\"},{\"id\":\"tnti\",\"type\":\"providers\"}]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"lwardct\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons LWTEST\",\"displayName\":\"Australian Research Data Commons LWTEST\",\"symbol\":\"LWARDCT\",\"website\":null,\"systemEmail\":\"liz.woods@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-29T04:22:26.000Z\",\"updated\":\"2020-04-29T04:25:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":439,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":135},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":125},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":245},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":170},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":9},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":432},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -106,8 +106,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:48.687Z", - "time": 269, + "startedDateTime": "2020-05-04T16:39:21.320Z", + "time": 350, "timings": { "blocked": -1, "connect": -1, @@ -115,7 +115,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 269 + "wait": 350 } } ], diff --git a/recordings/Acceptance-anonymous-admin_3497805088/visiting-repositories_601244364/recording.har b/recordings/Acceptance-anonymous-admin_3497805088/visiting-repositories_601244364/recording.har index 22f38ccfb..df3949d06 100644 --- a/recordings/Acceptance-anonymous-admin_3497805088/visiting-repositories_601244364/recording.har +++ b/recordings/Acceptance-anonymous-admin_3497805088/visiting-repositories_601244364/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | admin/visiting repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -87,11 +87,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 132870, + "bodySize": 126599, "content": { "mimeType": "application/json; charset=utf-8", - "size": 132870, - "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":\"## I am a repository\\n\\n- one repo\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-03-12T10:05:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-03-24T09:39:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ethz.test\",\"type\":\"clients\"},{\"id\":\"ethz.e-coll\",\"type\":\"clients\"},{\"id\":\"ethz.seals\",\"type\":\"clients\"},{\"id\":\"ethz.dodis\",\"type\":\"clients\"},{\"id\":\"ethz.ar\",\"type\":\"clients\"},{\"id\":\"ethz.uzh-al\",\"type\":\"clients\"},{\"id\":\"ethz.corssa\",\"type\":\"clients\"},{\"id\":\"ethz.jroi\",\"type\":\"clients\"},{\"id\":\"ethz.unibas\",\"type\":\"clients\"},{\"id\":\"ethz.wgms\",\"type\":\"clients\"},{\"id\":\"ethz.ids-lu\",\"type\":\"clients\"},{\"id\":\"ethz.lives\",\"type\":\"clients\"},{\"id\":\"ethz.epfl\",\"type\":\"clients\"},{\"id\":\"ethz.da-rd\",\"type\":\"clients\"},{\"id\":\"ethz.e-manus\",\"type\":\"clients\"},{\"id\":\"ethz.ubasojs\",\"type\":\"clients\"},{\"id\":\"ethz.ma\",\"type\":\"clients\"},{\"id\":\"ethz.bopalt\",\"type\":\"clients\"},{\"id\":\"ethz.zora\",\"type\":\"clients\"},{\"id\":\"ethz.ecodices\",\"type\":\"clients\"},{\"id\":\"ethz.sed\",\"type\":\"clients\"},{\"id\":\"ethz.e-rara\",\"type\":\"clients\"},{\"id\":\"ethz.li\",\"type\":\"clients\"},{\"id\":\"ethz.dmm\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ad\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ba\",\"type\":\"clients\"},{\"id\":\"ethz.smif\",\"type\":\"clients\"},{\"id\":\"ethz.lo\",\"type\":\"clients\"},{\"id\":\"ethz.fsw\",\"type\":\"clients\"},{\"id\":\"ethz.itis\",\"type\":\"clients\"},{\"id\":\"ethz.infoclio\",\"type\":\"clients\"},{\"id\":\"ethz.boris\",\"type\":\"clients\"},{\"id\":\"ethz.bopitw\",\"type\":\"clients\"},{\"id\":\"ethz.wsl\",\"type\":\"clients\"},{\"id\":\"ethz.iumsppub\",\"type\":\"clients\"},{\"id\":\"ethz.iumspdat\",\"type\":\"clients\"},{\"id\":\"ethz.rfre\",\"type\":\"clients\"},{\"id\":\"ethz.phsg\",\"type\":\"clients\"},{\"id\":\"ethz.bopjemr\",\"type\":\"clients\"},{\"id\":\"ethz.permos\",\"type\":\"clients\"},{\"id\":\"ethz.epics3\",\"type\":\"clients\"},{\"id\":\"ethz.inblog\",\"type\":\"clients\"},{\"id\":\"ethz.hopepsy\",\"type\":\"clients\"},{\"id\":\"ethz.zhaw\",\"type\":\"clients\"},{\"id\":\"ethz.ms\",\"type\":\"clients\"},{\"id\":\"ethz.ubemo\",\"type\":\"clients\"},{\"id\":\"ethz.epics-bs\",\"type\":\"clients\"},{\"id\":\"ethz.hopesui\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ki\",\"type\":\"clients\"},{\"id\":\"ethz.epics-st\",\"type\":\"clients\"},{\"id\":\"ethz.soz\",\"type\":\"clients\"},{\"id\":\"ethz.wsllfi\",\"type\":\"clients\"},{\"id\":\"ethz.bopinfo\",\"type\":\"clients\"},{\"id\":\"ethz.dodisint\",\"type\":\"clients\"},{\"id\":\"ethz.hes\",\"type\":\"clients\"},{\"id\":\"ethz.marvel\",\"type\":\"clients\"},{\"id\":\"ethz.historiaiuris\",\"type\":\"clients\"},{\"id\":\"ethz.agroscope\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3929\",\"type\":\"prefixes\"},{\"id\":\"10.3930\",\"type\":\"prefixes\"},{\"id\":\"10.3931\",\"type\":\"prefixes\"},{\"id\":\"10.3932\",\"type\":\"prefixes\"},{\"id\":\"10.3933\",\"type\":\"prefixes\"},{\"id\":\"10.5075\",\"type\":\"prefixes\"},{\"id\":\"10.5076\",\"type\":\"prefixes\"},{\"id\":\"10.5078\",\"type\":\"prefixes\"},{\"id\":\"10.5079\",\"type\":\"prefixes\"},{\"id\":\"10.5166\",\"type\":\"prefixes\"},{\"id\":\"10.5167\",\"type\":\"prefixes\"},{\"id\":\"10.5169\",\"type\":\"prefixes\"},{\"id\":\"10.5170\",\"type\":\"prefixes\"},{\"id\":\"10.5448\",\"type\":\"prefixes\"},{\"id\":\"10.5449\",\"type\":\"prefixes\"},{\"id\":\"10.5450\",\"type\":\"prefixes\"},{\"id\":\"10.5451\",\"type\":\"prefixes\"},{\"id\":\"10.5452\",\"type\":\"prefixes\"},{\"id\":\"10.5168\",\"type\":\"prefixes\"},{\"id\":\"10.5903\",\"type\":\"prefixes\"},{\"id\":\"10.5904\",\"type\":\"prefixes\"},{\"id\":\"10.5905\",\"type\":\"prefixes\"},{\"id\":\"10.5906\",\"type\":\"prefixes\"},{\"id\":\"10.5907\",\"type\":\"prefixes\"},{\"id\":\"10.12682\",\"type\":\"prefixes\"},{\"id\":\"10.12683\",\"type\":\"prefixes\"},{\"id\":\"10.12684\",\"type\":\"prefixes\"},{\"id\":\"10.12685\",\"type\":\"prefixes\"},{\"id\":\"10.12686\",\"type\":\"prefixes\"},{\"id\":\"10.7890\",\"type\":\"prefixes\"},{\"id\":\"10.7891\",\"type\":\"prefixes\"},{\"id\":\"10.7894\",\"type\":\"prefixes\"},{\"id\":\"10.7892\",\"type\":\"prefixes\"},{\"id\":\"10.13097\",\"type\":\"prefixes\"},{\"id\":\"10.13096\",\"type\":\"prefixes\"},{\"id\":\"10.13100\",\"type\":\"prefixes\"},{\"id\":\"10.13099\",\"type\":\"prefixes\"},{\"id\":\"10.13098\",\"type\":\"prefixes\"},{\"id\":\"10.13093\",\"type\":\"prefixes\"},{\"id\":\"10.13092\",\"type\":\"prefixes\"},{\"id\":\"10.13095\",\"type\":\"prefixes\"},{\"id\":\"10.13094\",\"type\":\"prefixes\"},{\"id\":\"10.13091\",\"type\":\"prefixes\"},{\"id\":\"10.16909\",\"type\":\"prefixes\"},{\"id\":\"10.16908\",\"type\":\"prefixes\"},{\"id\":\"10.16907\",\"type\":\"prefixes\"},{\"id\":\"10.16906\",\"type\":\"prefixes\"},{\"id\":\"10.16905\",\"type\":\"prefixes\"},{\"id\":\"10.16904\",\"type\":\"prefixes\"},{\"id\":\"10.16903\",\"type\":\"prefixes\"},{\"id\":\"10.16902\",\"type\":\"prefixes\"},{\"id\":\"10.16911\",\"type\":\"prefixes\"},{\"id\":\"10.16910\",\"type\":\"prefixes\"},{\"id\":\"10.18749\",\"type\":\"prefixes\"},{\"id\":\"10.18748\",\"type\":\"prefixes\"},{\"id\":\"10.18747\",\"type\":\"prefixes\"},{\"id\":\"10.18752\",\"type\":\"prefixes\"},{\"id\":\"10.18753\",\"type\":\"prefixes\"},{\"id\":\"10.18750\",\"type\":\"prefixes\"},{\"id\":\"10.18751\",\"type\":\"prefixes\"},{\"id\":\"10.18756\",\"type\":\"prefixes\"},{\"id\":\"10.18754\",\"type\":\"prefixes\"},{\"id\":\"10.18755\",\"type\":\"prefixes\"},{\"id\":\"10.21258\",\"type\":\"prefixes\"},{\"id\":\"10.21257\",\"type\":\"prefixes\"},{\"id\":\"10.21256\",\"type\":\"prefixes\"},{\"id\":\"10.21255\",\"type\":\"prefixes\"},{\"id\":\"10.21259\",\"type\":\"prefixes\"},{\"id\":\"10.21260\",\"type\":\"prefixes\"},{\"id\":\"10.21261\",\"type\":\"prefixes\"},{\"id\":\"10.21263\",\"type\":\"prefixes\"},{\"id\":\"10.21262\",\"type\":\"prefixes\"},{\"id\":\"10.21264\",\"type\":\"prefixes\"},{\"id\":\"10.22019\",\"type\":\"prefixes\"},{\"id\":\"10.22018\",\"type\":\"prefixes\"},{\"id\":\"10.22013\",\"type\":\"prefixes\"},{\"id\":\"10.22012\",\"type\":\"prefixes\"},{\"id\":\"10.22015\",\"type\":\"prefixes\"},{\"id\":\"10.22014\",\"type\":\"prefixes\"},{\"id\":\"10.22016\",\"type\":\"prefixes\"},{\"id\":\"10.22009\",\"type\":\"prefixes\"},{\"id\":\"10.26039\",\"type\":\"prefixes\"},{\"id\":\"10.24435\",\"type\":\"prefixes\"},{\"id\":\"10.24434\",\"type\":\"prefixes\"},{\"id\":\"10.24437\",\"type\":\"prefixes\"},{\"id\":\"10.24439\",\"type\":\"prefixes\"},{\"id\":\"10.24442\",\"type\":\"prefixes\"},{\"id\":\"10.24445\",\"type\":\"prefixes\"},{\"id\":\"10.24452\",\"type\":\"prefixes\"},{\"id\":\"10.26032\",\"type\":\"prefixes\"},{\"id\":\"10.26035\",\"type\":\"prefixes\"},{\"id\":\"10.26037\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2098,\"totalPages\":84,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":183},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":232},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":147},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":119},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":115},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":93},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":59},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":59},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":55},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":53},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":47},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":46},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":43},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":41}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2040},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":68},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":23},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":16},{\"id\":\"other\",\"title\":\"Other\",\"count\":13},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":9},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":16},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":14},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1},{\"id\":\"islandora\",\"title\":\"Islandora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" + "size": 126599, + "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-04-24T04:50:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-04-28T12:27:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2120,\"totalPages\":85,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":205},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":null,\"count\":252},{\"id\":\"cdl\",\"title\":null,\"count\":232},{\"id\":\"bl\",\"title\":null,\"count\":147},{\"id\":\"inist\",\"title\":null,\"count\":120},{\"id\":\"ands\",\"title\":null,\"count\":115},{\"id\":\"gesis\",\"title\":null,\"count\":93},{\"id\":\"datacite\",\"title\":null,\"count\":62},{\"id\":\"ethz\",\"title\":null,\"count\":59},{\"id\":\"mtakik\",\"title\":null,\"count\":59},{\"id\":\"osti\",\"title\":null,\"count\":55}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2062},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":71},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":24},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":18},{\"id\":\"other\",\"title\":\"Other\",\"count\":14},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":10},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":17},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":17},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -110,8 +110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:49.218Z", - "time": 220, + "startedDateTime": "2020-05-04T16:39:22.047Z", + "time": 452, "timings": { "blocked": -1, "connect": -1, @@ -119,7 +119,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 220 + "wait": 452 } } ], diff --git a/recordings/Acceptance-anonymous-doi_1082049019/visiting-dois_3774702605/recording.har b/recordings/Acceptance-anonymous-doi_1082049019/visiting-dois_3774702605/recording.har index 1841bb2ff..42e9eddcb 100644 --- a/recordings/Acceptance-anonymous-doi_1082049019/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-anonymous-doi_1082049019/visiting-dois_3774702605/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | doi/visiting dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -119,11 +119,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 87102, + "bodySize": 109001, "content": { "mimeType": "application/json; charset=utf-8", - "size": 87102, - "text": "{\"data\":[{\"id\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813559\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:41.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:40.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842813\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842811\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813557\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:36.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:33.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813555\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:28.000Z\",\"registered\":\"2020-04-23T07:10:29.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:24.000Z\",\"registered\":\"2020-04-23T07:10:24.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842809\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842807\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:23.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:22.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813549\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:20.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842803\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.5258/soton/1560\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5258/soton/1560\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5258/soton/1560/\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Binney, Heather\",\"nameType\":\"Personal\",\"givenName\":\"Heather\",\"familyName\":\"Binney\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"en-us\",\"title\":\"Title changed Vegetation of Eurasia from the last glacial maximum to the present: the pollen data\"}],\"publisher\":\"University of Southampton\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"1900/2013\",\"dateType\":\"Collected\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-us\",\"description\":\"This dataset details the pollen data used in the production of the biome vegetation maps shown in the published paper. The results of the biomization results of the pollen data is included.Adding in more information as required by testing\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://eprints.soton.ac.uk/1559/test\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-12T16:59:12.000Z\",\"registered\":\"2019-02-12T16:59:13.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:02:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.soton\",\"type\":\"clients\"}}}},{\"id\":\"10.24378/exe.7\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24378/exe.7\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24378/exe.7\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Desair, Tom\",\"nameType\":\"Personal\",\"givenName\":\"Tom\",\"familyName\":\"Desair\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Atmire Test Submission\"}],\"publisher\":\"Test\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]},{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Other\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Test\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://oredev03.exeter.ac.uk/repository/handle/10871/30993\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-02-26T15:50:28.000Z\",\"registered\":\"2018-03-01T16:00:40.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.exeter\",\"type\":\"clients\"}}}},{\"id\":\"10.14288/1.0043659\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14288/1.0043659\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14288/1.0043659\",\"identifierType\":\"DOI\"}],\"creators\":[],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"error\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://api.datacite.org/dois/10.14288/1.0043659\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-18T13:48:46.000Z\",\"registered\":\"2018-12-18T13:48:55.000Z\",\"published\":\"\",\"updated\":\"2020-04-23T07:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cisti.ubc\",\"type\":\"clients\"}}}},{\"id\":\"10.80066/1nfy-1g91\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80066/1nfy-1g91\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80066/1nfy-1g91\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"CNRST\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Formation Test\"}],\"publisher\":\"IMIST\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceTypeGeneral\":\"DataPaper\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-29T11:41:51.000Z\",\"registered\":\"2019-11-29T12:17:34.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cnrst.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21338/2019.00001\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21338/2019.00001\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21338/2019.00001\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test dataset\"}],\"publisher\":\"NIRD Storage\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Natural sciences\"},{\"subject\":\"Earth science\"},{\"subject\":\"Environmental science\"}],\"contributors\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"contributorType\":\"Other\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2020-01-17\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Simulation, Raw\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://co2datashare.org/dataset/sleipner-4d-seismic-dataset\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-17T14:19:20.000Z\",\"registered\":\"2020-01-17T14:19:21.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bibsys.uninett\",\"type\":\"clients\"}}}},{\"id\":\"10.80117/jqx3-61at\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80117/jqx3-61at\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80117/jqx3-61at\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"DataCite Metadata Working Group\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"DataCite Metadata Schema Documentation for the Publication and Citation of Research Data v4.0\"}],\"publisher\":\"DataCite e.V.\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[{\"name\":\"California Digital Library\"}],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Smaele, Madeleine de\",\"nameType\":\"Personal\",\"givenName\":\"Madeleine de\",\"familyName\":\"Smaele\",\"affiliation\":[{\"name\":\"TU Delft\"}],\"contributorType\":\"ProjectLeader\"},{\"name\":\"Ashton, Jan\",\"nameType\":\"Personal\",\"givenName\":\"Jan\",\"familyName\":\"Ashton\",\"affiliation\":[{\"name\":\"British Library\"}],\"contributorType\":\"Editor\"},{\"name\":\"Barton, Amy\",\"nameType\":\"Personal\",\"givenName\":\"Amy\",\"familyName\":\"Barton\",\"affiliation\":[{\"name\":\"Purdue University Library\"}],\"contributorType\":\"Editor\"},{\"name\":\"Bradford, Tina\",\"nameType\":\"Personal\",\"givenName\":\"Tina\",\"familyName\":\"Bradford\",\"affiliation\":[{\"name\":\"NRC/CISTI\"}],\"contributorType\":\"Editor\"},{\"name\":\"Ciolek-Figiel, Anne\",\"nameType\":\"Personal\",\"givenName\":\"Anne\",\"familyName\":\"Ciolek-Figiel\",\"affiliation\":[{\"name\":\"Inist‐CNRS\"}],\"contributorType\":\"Editor\"},{\"name\":\"Dietiker, Stefanie\",\"nameType\":\"Personal\",\"givenName\":\"Stefanie\",\"familyName\":\"Dietiker\",\"affiliation\":[{\"name\":\"ETH Zürich\"}],\"contributorType\":\"Editor\"},{\"name\":\"Elliot, Jannean\",\"nameType\":\"Personal\",\"givenName\":\"Jannean\",\"familyName\":\"Elliot\",\"affiliation\":[{\"name\":\"DOE/OSTI\"}],\"contributorType\":\"Editor\"},{\"name\":\"Genat, Berrit\",\"nameType\":\"Personal\",\"givenName\":\"Berrit\",\"familyName\":\"Genat\",\"affiliation\":[{\"name\":\"TIB\"}],\"contributorType\":\"Editor\"},{\"name\":\"Harzenetter, Karoline\",\"nameType\":\"Personal\",\"givenName\":\"Karoline\",\"familyName\":\"Harzenetter\",\"affiliation\":[{\"name\":\"GESIS\"}],\"contributorType\":\"Editor\"},{\"name\":\"Hirschmann, Barbara\",\"nameType\":\"Personal\",\"givenName\":\"Barbara\",\"familyName\":\"Hirschmann\",\"affiliation\":[{\"name\":\"ETH Zürich\"}],\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-0289-0345\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Jakobsson, Stefan\",\"nameType\":\"Personal\",\"givenName\":\"Stefan\",\"familyName\":\"Jakobsson\",\"affiliation\":[{\"name\":\"SND\"}],\"contributorType\":\"Editor\"},{\"name\":\"Mailloux, Jean-Yves\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Yves\",\"familyName\":\"Mailloux\",\"affiliation\":[{\"name\":\"NRC/CISTI\"}],\"contributorType\":\"Editor\"},{\"name\":\"Newbold, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Newbold\",\"affiliation\":[{\"name\":\"British Library\"}],\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8255-9013\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Nielsen, Lars Holm\",\"nameType\":\"Personal\",\"givenName\":\"Lars Holm\",\"familyName\":\"Nielsen\",\"affiliation\":[{\"name\":\"CERN\"}],\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8135-3489\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Yahia, Mohamed\",\"nameType\":\"Personal\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\",\"affiliation\":[{\"name\":\"Inist-CNRS\"}],\"contributorType\":\"Editor\"},{\"name\":\"Ziedorn, Frauke\",\"nameType\":\"Personal\",\"givenName\":\"Frauke\",\"familyName\":\"Ziedorn\",\"affiliation\":[{\"name\":\"TIB\"}],\"contributorType\":\"Supervisor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1143-781X\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Documentation\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"Documents\",\"relatedIdentifier\":\"10.5438/0013\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.5438/0010\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"45 pages\"],\"formats\":[\"application/pdf\"],\"version\":\"4.0\",\"rightsList\":[],\"descriptions\":[{\"description\":\"1 Introduction\",\"descriptionType\":\"TableOfContents\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://example.org/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-24T18:30:43.000Z\",\"registered\":\"2020-03-24T18:32:17.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:02:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cmu.bil\",\"type\":\"clients\"}}}},{\"id\":\"10.70139/4s96-j174\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70139/4s96-j174\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70139/4s96-j174\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"A\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test\"}],\"publisher\":\"Brown\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"MPCT\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"MediaObject\",\"resourceType\":\"Audiovisual\",\"resourceTypeGeneral\":\"Audiovisual\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.example.com\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-31T14:58:22.000Z\",\"registered\":\"2019-05-31T14:58:22.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"figshare.dud\",\"type\":\"clients\",\"attributes\":{\"name\":\"figshare DUD datacenter\",\"symbol\":\"FIGSHARE.DUD\",\"year\":2016,\"contactEmail\":\"danielduduta@figshare.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"figsh.com,dhs-publicaccess.st.dhs.gov,figsh.us,figshare.us\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-07-20T08:29:35.000Z\",\"updated\":\"2019-11-13T13:51:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"figshare\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.soton\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Southampton\",\"symbol\":\"BL.SOTON\",\"year\":2012,\"contactEmail\":\"I.A.Stark@soton.ac.uk\",\"alternateName\":null,\"description\":\"ePrints Soton is the University's Research Repository. It contains journal articles, books, PhD theses, conference papers, data, reports, working papers, art exhibitions and more. Where possible, journal articles and conference proceedings are uploaded into ePrints and made open access.\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"soton.ac.uk,worldpop.org.uk\",\"re3data\":\"https://doi.org/10.17616/R3H05B\",\"opendoar\":null,\"issn\":null,\"url\":\"https://eprints.soton.ac.uk/\",\"created\":\"2012-10-03T16:00:24.000Z\",\"updated\":\"2018-11-24T18:40:59.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.exeter\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Exeter\",\"symbol\":\"BL.EXETER\",\"year\":2016,\"contactEmail\":\"P.Liebetrau@exeter.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"exeter.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-06-22T13:23:03.000Z\",\"updated\":\"2018-08-26T01:30:58.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cisti.ubc\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of British Columbia\",\"symbol\":\"CISTI.UBC\",\"year\":2015,\"contactEmail\":\"eugene.barsky@ubc.ca\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"ubc.ca\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2015-08-04T20:15:03.000Z\",\"updated\":\"2019-01-24T01:24:35.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cisti\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cnrst.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Test IMIST\",\"symbol\":\"CNRST.TEST\",\"year\":2019,\"contactEmail\":\"ayssi@imist.ma\",\"alternateName\":null,\"description\":null,\"language\":[\"fr\"],\"clientType\":\"periodical\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"created\":\"2019-11-29T11:12:15.000Z\",\"updated\":\"2019-12-10T10:20:02.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cnrst\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bibsys.uninett\",\"type\":\"clients\",\"attributes\":{\"name\":\"UNINETT Sigma AS, Norway\",\"symbol\":\"BIBSYS.UNINETT\",\"year\":2016,\"contactEmail\":\"maria.iozzi@uninett.no\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"norstore.no\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-04-20T09:04:56.000Z\",\"updated\":\"2019-11-04T10:58:20.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bibsys\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cmu.bil\",\"type\":\"clients\",\"attributes\":{\"name\":\"Brain Image Library\",\"symbol\":\"CMU.BIL\",\"year\":2019,\"contactEmail\":\"kiritharan@cmu.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2019-12-17T18:33:33.000Z\",\"updated\":\"2019-12-17T18:37:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cmu\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"brown.bdr-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Brown BDR Test\",\"symbol\":\"BROWN.BDR-TEST\",\"year\":2019,\"contactEmail\":\"bdr@brown.edu\",\"alternateName\":null,\"description\":\"Test account for Datacite DOI generator\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2019-05-31T14:22:36.000Z\",\"updated\":\"2019-05-31T14:29:07.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"brown\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1145128,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1145128}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":847907},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":135702},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":51460},{\"id\":\"other\",\"title\":\"Other\",\"count\":26114},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":9789},{\"id\":\"image\",\"title\":\"Image\",\"count\":4567},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4502},{\"id\":\"software\",\"title\":\"Software\",\"count\":3563},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":668},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":489},{\"id\":\"service\",\"title\":\"Service\",\"count\":110},{\"id\":\"event\",\"title\":\"Event\",\"count\":78},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":59},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":37},{\"id\":\"model\",\"title\":\"Model\",\"count\":32}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":219345},{\"id\":\"2019\",\"title\":\"2019\",\"count\":882556},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38098},{\"id\":\"2017\",\"title\":\"2017\",\"count\":4107},{\"id\":\"2016\",\"title\":\"2016\",\"count\":136},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":8},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":8},{\"id\":\"2024\",\"title\":\"2024\",\"count\":12},{\"id\":\"2023\",\"title\":\"2023\",\"count\":22},{\"id\":\"2022\",\"title\":\"2022\",\"count\":34},{\"id\":\"2021\",\"title\":\"2021\",\"count\":76},{\"id\":\"2020\",\"title\":\"2020\",\"count\":108524},{\"id\":\"2019\",\"title\":\"2019\",\"count\":245401},{\"id\":\"2018\",\"title\":\"2018\",\"count\":76504},{\"id\":\"2017\",\"title\":\"2017\",\"count\":32417},{\"id\":\"2016\",\"title\":\"2016\",\"count\":31687},{\"id\":\"2015\",\"title\":\"2015\",\"count\":31668},{\"id\":\"2014\",\"title\":\"2014\",\"count\":32810},{\"id\":\"2013\",\"title\":\"2013\",\"count\":104226},{\"id\":\"2012\",\"title\":\"2012\",\"count\":173709},{\"id\":\"2011\",\"title\":\"2011\",\"count\":38692},{\"id\":\"2010\",\"title\":\"2010\",\"count\":18734},{\"id\":\"2009\",\"title\":\"2009\",\"count\":17677},{\"id\":\"2008\",\"title\":\"2008\",\"count\":19174},{\"id\":\"2007\",\"title\":\"2007\",\"count\":14557},{\"id\":\"2006\",\"title\":\"2006\",\"count\":12706},{\"id\":\"2005\",\"title\":\"2005\",\"count\":9771},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14095},{\"id\":\"2003\",\"title\":\"2003\",\"count\":10804},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13013},{\"id\":\"2001\",\"title\":\"2001\",\"count\":8699},{\"id\":\"2000\",\"title\":\"2000\",\"count\":9904},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7290},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5467},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7061},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4186},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3645},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3088},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3156},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2685},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2515},{\"id\":\"1990\",\"title\":\"1990\",\"count\":2030},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1684},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1621},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1805},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1892},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1615},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1450},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1570},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1376},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1176},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4627},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1046},{\"id\":\"1978\",\"title\":\"1978\",\"count\":990},{\"id\":\"1977\",\"title\":\"1977\",\"count\":923},{\"id\":\"1976\",\"title\":\"1976\",\"count\":874},{\"id\":\"1975\",\"title\":\"1975\",\"count\":818},{\"id\":\"1974\",\"title\":\"1974\",\"count\":846},{\"id\":\"1973\",\"title\":\"1973\",\"count\":746},{\"id\":\"1972\",\"title\":\"1972\",\"count\":703},{\"id\":\"1971\",\"title\":\"1971\",\"count\":689},{\"id\":\"1970\",\"title\":\"1970\",\"count\":572},{\"id\":\"1969\",\"title\":\"1969\",\"count\":508},{\"id\":\"1968\",\"title\":\"1968\",\"count\":500},{\"id\":\"1967\",\"title\":\"1967\",\"count\":724},{\"id\":\"1966\",\"title\":\"1966\",\"count\":538},{\"id\":\"1965\",\"title\":\"1965\",\"count\":548},{\"id\":\"1964\",\"title\":\"1964\",\"count\":493},{\"id\":\"1963\",\"title\":\"1963\",\"count\":427},{\"id\":\"1962\",\"title\":\"1962\",\"count\":454},{\"id\":\"1961\",\"title\":\"1961\",\"count\":374},{\"id\":\"1960\",\"title\":\"1960\",\"count\":345},{\"id\":\"1959\",\"title\":\"1959\",\"count\":316},{\"id\":\"1958\",\"title\":\"1958\",\"count\":337},{\"id\":\"1957\",\"title\":\"1957\",\"count\":355},{\"id\":\"1956\",\"title\":\"1956\",\"count\":274},{\"id\":\"1955\",\"title\":\"1955\",\"count\":251},{\"id\":\"1954\",\"title\":\"1954\",\"count\":407},{\"id\":\"1953\",\"title\":\"1953\",\"count\":205},{\"id\":\"1952\",\"title\":\"1952\",\"count\":189},{\"id\":\"1951\",\"title\":\"1951\",\"count\":256},{\"id\":\"1950\",\"title\":\"1950\",\"count\":205},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":185},{\"id\":\"1947\",\"title\":\"1947\",\"count\":112},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":73},{\"id\":\"1944\",\"title\":\"1944\",\"count\":134},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":64},{\"id\":\"1938\",\"title\":\"1938\",\"count\":128},{\"id\":\"1937\",\"title\":\"1937\",\"count\":74},{\"id\":\"1936\",\"title\":\"1936\",\"count\":114},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":132},{\"id\":\"1933\",\"title\":\"1933\",\"count\":297},{\"id\":\"1932\",\"title\":\"1932\",\"count\":190},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":160},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":92},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":50},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":42},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":178},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":39},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":66},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":62},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":31},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":43},{\"id\":\"1888\",\"title\":\"1888\",\"count\":33},{\"id\":\"1887\",\"title\":\"1887\",\"count\":25},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":48},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":35},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":103549},{\"id\":\"2019\",\"title\":\"2019\",\"count\":189535},{\"id\":\"2018\",\"title\":\"2018\",\"count\":37981},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1653},{\"id\":\"2016\",\"title\":\"2016\",\"count\":127},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803750},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":75077},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":42639},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":30371},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27636},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":17644},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":17401},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15035},{\"id\":\"gdcc\",\"title\":\"The Global Dataverse Community Consortium (GDCC)\",\"count\":10055},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":9014},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":8621},{\"id\":\"pitp\",\"title\":\"Perimeter Institute for Theoretical Physics\",\"count\":8357},{\"id\":\"gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":7769},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":7442}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803750},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":75077},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27560},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24514},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17296},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15030},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13191},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":8466},{\"id\":\"pitp.pirsa\",\"title\":\"Perimeter Institute\",\"count\":8357},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":8031},{\"id\":\"gbif.gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":7768},{\"id\":\"gdcc.harvard-test\",\"title\":\"Harvard Dataverse Test Account\",\"count\":7559},{\"id\":\"dk.sb\",\"title\":\"Statsbiblioteket\",\"count\":5813}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8357},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":97},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":38},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":7},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":6},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":5},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/00x6h5n95\",\"title\":\"Dryad Digital Repository\",\"count\":2},{\"id\":\"ror.org/01523aj77\",\"title\":\"Sig Holding (Switzerland)\",\"count\":2},{\"id\":\"ror.org/05dxps055\",\"title\":\"California Institute of Technology\",\"count\":2},{\"id\":\"ror.org/05xpvk416\",\"title\":\"National Institute of Standards and Technology\",\"count\":2},{\"id\":\"ror.org/005cgd502\",\"title\":\"Digital Authentication Technologies (United States)\",\"count\":1},{\"id\":\"ror.org/00987cb86\",\"title\":\"Sao Paulo State University\",\"count\":1}],\"prefixes\":[{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130738},{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":75077},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58818},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56676},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34961},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27560},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20631},{\"id\":\"10.1038\",\"title\":\"10.1038\",\"count\":19569},{\"id\":\"10.1093\",\"title\":\"10.1093\",\"count\":18334},{\"id\":\"10.3390\",\"title\":\"10.3390\",\"count\":18301},{\"id\":\"10.1098\",\"title\":\"10.1098\",\"count\":17671},{\"id\":\"10.24335\",\"title\":\"10.24335\",\"count\":16574}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2881},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":708}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":986311},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":5159},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":3}],\"sources\":[{\"id\":\"levriero\",\"title\":\"Levriero\",\"count\":803750},{\"id\":\"mds\",\"title\":\"Mds\",\"count\":241959},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":3871},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":277},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":117},{\"id\":\"test\",\"title\":\"Test\",\"count\":21},{\"id\":\"Elettra\",\"title\":\"Elettra\",\"count\":5},{\"id\":\"MCX\",\"title\":\"Mcx\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":24438},{\"id\":\"404\",\"title\":\"404\",\"count\":3332},{\"id\":\"403\",\"title\":\"403\",\"count\":977},{\"id\":\"401\",\"title\":\"401\",\"count\":281},{\"id\":\"500\",\"title\":\"500\",\"count\":277},{\"id\":\"503\",\"title\":\"503\",\"count\":142},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":11},{\"id\":\"502\",\"title\":\"502\",\"count\":2}],\"linksChecked\":874,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":63015},{\"id\":\"1\",\"title\":\"1\",\"count\":3873}],\"linkChecksSchemaOrgId\":1637,\"linkChecksDcIdentifier\":4746,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Anatomy\",\"title\":\"Anatomy\",\"count\":27517},{\"id\":\"Cat\",\"title\":\"Cat\",\"count\":19369},{\"id\":\"80505 Web Technologies (excl. Web Search)\",\"title\":\"80505 Web Technologies (Excl. Web Search)\",\"count\":9383},{\"id\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, etc.)\",\"title\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, Etc.)\",\"count\":7669},{\"id\":\"biodiversity\",\"title\":\"Biodiversity\",\"count\":5221},{\"id\":\"GBIF\",\"title\":\"Gbif\",\"count\":5218},{\"id\":\"species occurrences\",\"title\":\"Species Occurrences\",\"count\":5218},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":4578},{\"id\":\"60101 Analytical Biochemistry\",\"title\":\"60101 Analytical Biochemistry\",\"count\":3490},{\"id\":\"80101 Adaptive Agents and Intelligent Robotics\",\"title\":\"80101 Adaptive Agents And Intelligent Robotics\",\"count\":3462},{\"id\":\"Natural Sciences - Mathematics (1.1)\",\"title\":\"Natural Sciences Mathematics (1.1)\",\"count\":3265},{\"id\":\"Computer Engineering\",\"title\":\"Computer Engineering\",\"count\":3216},{\"id\":\"Genetic Engineering\",\"title\":\"Genetic Engineering\",\"count\":3189},{\"id\":\"Aerospace Engineering\",\"title\":\"Aerospace Engineering\",\"count\":3178},{\"id\":\"Nuclear Engineering\",\"title\":\"Nuclear Engineering\",\"count\":3143}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 109001, + "text": "{\"data\":[{\"id\":\"10.21410/fk27hbr5f/2nrlcf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/2nrlcf\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1982-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/2NRLCF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/1aoley\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/1aoley\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/1AOLEY\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1982)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/2nrlcf\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/1aoley\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK27HBR5F\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:26.000Z\",\"registered\":\"2020-05-04T16:06:28.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1981)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/5msoef\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/isjqad\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2EFULDR\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:14.000Z\",\"registered\":\"2020-05-04T16:06:16.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/isjqad\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/isjqad\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/ISJQAD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:19.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/5msoef\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/5msoef\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1981-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/5MSOEF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:18.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1978)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/xe1f9t\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/norj5n\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK21CFLYG\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:01.000Z\",\"registered\":\"2020-05-04T16:06:02.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/norj5n\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/norj5n\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/NORJ5N\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/xe1f9t\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/xe1f9t\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1978-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/XE1F9T\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:06.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2nmjtvz/bs6dmc\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2nmjtvz/bs6dmc\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2NMJTVZ\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2NMJTVZ/BS6DMC\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:53.000Z\",\"registered\":\"2020-05-04T16:05:54.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2nmjtvz\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2nmjtvz\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1977)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz/xii1bd\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz/bs6dmc\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2NMJTVZ\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":1,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:48.000Z\",\"registered\":\"2020-05-04T16:05:49.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2nmjtvz/xii1bd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2nmjtvz/xii1bd\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1977-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2NMJTVZ\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2NMJTVZ/XII1BD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:53.000Z\",\"registered\":\"2020-05-04T16:05:53.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2dfs3ta\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2dfs3ta\",\"identifiers\":[],\"creators\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Database regarding the North Indian MPs since 1952\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta/qtaccg\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta/ibazgl\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"This database is a unique achievement to which we are happy to give you a free access. It covers the members of the lower house of the Indian parliament (the House of the People or Lok Sabha) who have been elected between the first general elections of 1951-52 and the fourteenth ones in 2004 in the Hindi-speaking states (Bihar, Chandigarh, Chhattisgarh, Delhi, Haryana, Himachal Pradesh, Jharkhand, Madhya Pradesh, Rajasthan, Uttar Pradesh, Uttarakhand). Many of these states did not exist in 1951-52. We have done as if they did by pooling together the constituencies which were to form them in order to make inter-temporal comparisons possible. For each Lok Sabha MP, this database provides their surname, first name, constituency, state of birth, party, gender, date of birth, religion, caste, level of education, and occupation. These data draw from the Election Commission publications, the website Who's Who in Lok Sabha [the only website I found today is the Parliament of India, Lok Sabha, https://loksabha.nic.in/]. and individual interviews with the MPs themselves or party old timers. Such a database can only result from a collective endeavour. It was initiated by Christophe Jaffrelot who collected most of the data year after year from the mid-1990s onwards. Elisabeth Theunissen, Cyril Robin, Virginie Dutoya, and Zuheir Desai played a major role successively over the last fifteen years. These data have been analysed in two books dealing with the growing presence of the low caste groups on the Indian political scene: Christophe Jaffrelot, India's silent revolution - The rise of the lower castes in North Indian politics (New York, Columbia University Press, 2003), and Christophe Jaffrelot, \\\"Introduction\\\", in Christophe Jaffrelot and Sanjay Kumar (eds), Rise of the plebeians ? The changing face of Indian legislative assemblies, New Delhi, Routledge, 2009.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2DFS3TA\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:35.000Z\",\"registered\":\"2020-05-04T16:05:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:41.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2dfs3ta/ibazgl\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2dfs3ta/ibazgl\",\"identifiers\":[],\"creators\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2DFS3TA\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2DFS3TA/IBAZGL\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:40.000Z\",\"registered\":\"2020-05-04T16:05:40.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2dfs3ta/qtaccg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2dfs3ta/qtaccg\",\"identifiers\":[],\"creators\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"en.cdsp.ddi.NorthIndianMPs-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2DFS3TA\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2DFS3TA/QTACCG\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:39.000Z\",\"registered\":\"2020-05-04T16:05:40.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.25601/j552-sk30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.25601/j552-sk30\",\"identifiers\":[],\"creators\":[{\"name\":\"Wickens, Neve\",\"nameType\":\"Personal\",\"givenName\":\"Neve\",\"familyName\":\"Wickens\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Rodriguez, Carlton\",\"nameType\":\"Personal\",\"givenName\":\"Carlton\",\"familyName\":\"Rodriguez\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Lecturer, Beth\",\"nameType\":\"Personal\",\"givenName\":\"Beth\",\"familyName\":\"Lecturer\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Approver Test 03 - Cartilage damage and deterioration to the joint surface – new challenges; new solutions\"}],\"publisher\":\"University of Hendra\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://test.uat.jiscrepository.com/view/dataset/97e51fe0-2cc5-4ff8-ba94-971fe7880213\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:03:22.000Z\",\"registered\":\"2020-05-04T16:03:23.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:03:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.jisc\",\"type\":\"clients\"}}}},{\"id\":\"10.18716/nmrshiftdb2/76923\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.18716/nmrshiftdb2/76923\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.18716/nmrshiftdb2/76923\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Various\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"NMR data for InChI=1S/C4HCl3O2/c5-1-2(6)4(8)9-3(1)7/h3H\"}],\"publisher\":\"University of Cologne\",\"container\":{},\"publicationYear\":2005,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2005\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"NMR measurements\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://handle.test.datacite.org/10.18716/nmrshiftdb2/76923\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-28T16:33:21.000Z\",\"registered\":\"2020-04-28T16:33:22.000Z\",\"published\":\"2005\",\"updated\":\"2020-05-04T15:57:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.1584932725458\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.1584932725458\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.1584932725458\",\"identifierType\":\"DOI\"},{\"identifier\":\"38f06820-08c5-42b2-94f6-47cc3e83a54a\",\"identifierType\":\"UUID\"}],\"creators\":[{\"name\":\"CLI TEST\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"gbif.org\",\"nameIdentifier\":\"gbif.orgCLI TEST\",\"nameIdentifierScheme\":\"GBIF\"}]}],\"titles\":[{\"title\":\"DatasetSynchronizer test dataset\"}],\"publisher\":\"The BGBM\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020-02-22\",\"dateType\":\"Created\"},{\"date\":\"2020-02-21\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"dan\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"OCCURRENCE\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"description\":\"Test dataset\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.gbif-dev.orgdataset/38f06820-08c5-42b2-94f6-47cc3e83a54a\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-23T03:05:44.000Z\",\"registered\":\"2020-03-23T03:05:44.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T15:48:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831220050986278\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831220050986278\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831220050986278\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:16.000Z\",\"registered\":\"2020-05-04T15:48:16.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831216975448144\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831216975448144\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831216975448144\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:13.000Z\",\"registered\":\"2020-05-04T15:48:13.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831216294296946\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831216294296946\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831216294296946\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:12.000Z\",\"registered\":\"2020-05-04T15:48:13.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831215623720968\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831215623720968\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831215623720968\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:12.000Z\",\"registered\":\"2020-05-04T15:48:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831214110403510\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831214110403510\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831214110403510\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:10.000Z\",\"registered\":\"2020-05-04T15:48:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831214952182971\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831214952182971\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831214952182971\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:11.000Z\",\"registered\":\"2020-05-04T15:48:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831208070943642\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831208070943642\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831208070943642\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:04.000Z\",\"registered\":\"2020-05-04T15:48:05.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"inist.cdsp\",\"type\":\"clients\",\"attributes\":{\"name\":\"Centre de données socio-politiques\",\"symbol\":\"INIST.CDSP\",\"year\":2016,\"contactEmail\":\"genevieve.michaud@sciencespo.fr\",\"alternateName\":null,\"description\":\"Center for socio-political data (CNRS & Sciences Po)\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"dataspire-test.sciencespo.fr,cdsp.sciences-po.fr,sciences-po.fr,bequali.fr\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://cdsp.sciences-po.fr/en/\",\"created\":\"2016-08-30T14:13:09.000Z\",\"updated\":\"2019-11-14T10:13:57.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.jisc\",\"type\":\"clients\",\"attributes\":{\"name\":\"Jisc\",\"symbol\":\"BL.JISC\",\"year\":2018,\"contactEmail\":\"Dom.Fripp@jisc.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"jisc.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-11-16T11:43:08.000Z\",\"updated\":\"2018-11-16T15:28:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitäts- und Stadtbibliothek Köln\",\"symbol\":\"ZBMED.UNIKOELN\",\"year\":2016,\"contactEmail\":\"weber@ub.uni-koeln.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-koeln.de,ride.i-d-e.de,pessoadigital.pt\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-02-17T11:03:01.000Z\",\"updated\":\"2020-05-04T09:25:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gbif.gbif\",\"type\":\"clients\",\"attributes\":{\"name\":\"Global Biodiversity Information Facility\",\"symbol\":\"GBIF.GBIF\",\"year\":2018,\"contactEmail\":\"dnoesgaard@gbif.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-12-20T16:15:59.000Z\",\"updated\":\"2019-04-11T09:26:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gbif\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1146112,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1146112}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":848405},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":135123},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":52000},{\"id\":\"other\",\"title\":\"Other\",\"count\":26520},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":9792},{\"id\":\"image\",\"title\":\"Image\",\"count\":4579},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4504},{\"id\":\"software\",\"title\":\"Software\",\"count\":3587},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":669},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":494},{\"id\":\"service\",\"title\":\"Service\",\"count\":110},{\"id\":\"model\",\"title\":\"Model\",\"count\":102},{\"id\":\"event\",\"title\":\"Event\",\"count\":78},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":60},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":37}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":220318},{\"id\":\"2019\",\"title\":\"2019\",\"count\":882567},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38098},{\"id\":\"2017\",\"title\":\"2017\",\"count\":4107},{\"id\":\"2016\",\"title\":\"2016\",\"count\":136},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":9},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":8},{\"id\":\"2024\",\"title\":\"2024\",\"count\":12},{\"id\":\"2023\",\"title\":\"2023\",\"count\":22},{\"id\":\"2022\",\"title\":\"2022\",\"count\":34},{\"id\":\"2021\",\"title\":\"2021\",\"count\":76},{\"id\":\"2020\",\"title\":\"2020\",\"count\":107188},{\"id\":\"2019\",\"title\":\"2019\",\"count\":245918},{\"id\":\"2018\",\"title\":\"2018\",\"count\":76700},{\"id\":\"2017\",\"title\":\"2017\",\"count\":32587},{\"id\":\"2016\",\"title\":\"2016\",\"count\":32354},{\"id\":\"2015\",\"title\":\"2015\",\"count\":31918},{\"id\":\"2014\",\"title\":\"2014\",\"count\":33048},{\"id\":\"2013\",\"title\":\"2013\",\"count\":104297},{\"id\":\"2012\",\"title\":\"2012\",\"count\":173750},{\"id\":\"2011\",\"title\":\"2011\",\"count\":38720},{\"id\":\"2010\",\"title\":\"2010\",\"count\":18789},{\"id\":\"2009\",\"title\":\"2009\",\"count\":17697},{\"id\":\"2008\",\"title\":\"2008\",\"count\":19194},{\"id\":\"2007\",\"title\":\"2007\",\"count\":14572},{\"id\":\"2006\",\"title\":\"2006\",\"count\":12711},{\"id\":\"2005\",\"title\":\"2005\",\"count\":9775},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14095},{\"id\":\"2003\",\"title\":\"2003\",\"count\":10804},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13016},{\"id\":\"2001\",\"title\":\"2001\",\"count\":8700},{\"id\":\"2000\",\"title\":\"2000\",\"count\":9905},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7293},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5467},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7061},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4187},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3646},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3088},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3156},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2686},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2515},{\"id\":\"1990\",\"title\":\"1990\",\"count\":2030},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1684},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1621},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1805},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1892},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1615},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1450},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1570},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1376},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1176},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4626},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1046},{\"id\":\"1978\",\"title\":\"1978\",\"count\":990},{\"id\":\"1977\",\"title\":\"1977\",\"count\":923},{\"id\":\"1976\",\"title\":\"1976\",\"count\":874},{\"id\":\"1975\",\"title\":\"1975\",\"count\":819},{\"id\":\"1974\",\"title\":\"1974\",\"count\":846},{\"id\":\"1973\",\"title\":\"1973\",\"count\":746},{\"id\":\"1972\",\"title\":\"1972\",\"count\":703},{\"id\":\"1971\",\"title\":\"1971\",\"count\":689},{\"id\":\"1970\",\"title\":\"1970\",\"count\":572},{\"id\":\"1969\",\"title\":\"1969\",\"count\":508},{\"id\":\"1968\",\"title\":\"1968\",\"count\":500},{\"id\":\"1967\",\"title\":\"1967\",\"count\":724},{\"id\":\"1966\",\"title\":\"1966\",\"count\":538},{\"id\":\"1965\",\"title\":\"1965\",\"count\":548},{\"id\":\"1964\",\"title\":\"1964\",\"count\":493},{\"id\":\"1963\",\"title\":\"1963\",\"count\":427},{\"id\":\"1962\",\"title\":\"1962\",\"count\":454},{\"id\":\"1961\",\"title\":\"1961\",\"count\":374},{\"id\":\"1960\",\"title\":\"1960\",\"count\":345},{\"id\":\"1959\",\"title\":\"1959\",\"count\":316},{\"id\":\"1958\",\"title\":\"1958\",\"count\":337},{\"id\":\"1957\",\"title\":\"1957\",\"count\":355},{\"id\":\"1956\",\"title\":\"1956\",\"count\":274},{\"id\":\"1955\",\"title\":\"1955\",\"count\":251},{\"id\":\"1954\",\"title\":\"1954\",\"count\":407},{\"id\":\"1953\",\"title\":\"1953\",\"count\":205},{\"id\":\"1952\",\"title\":\"1952\",\"count\":189},{\"id\":\"1951\",\"title\":\"1951\",\"count\":256},{\"id\":\"1950\",\"title\":\"1950\",\"count\":205},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":185},{\"id\":\"1947\",\"title\":\"1947\",\"count\":112},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":73},{\"id\":\"1944\",\"title\":\"1944\",\"count\":134},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":64},{\"id\":\"1938\",\"title\":\"1938\",\"count\":128},{\"id\":\"1937\",\"title\":\"1937\",\"count\":74},{\"id\":\"1936\",\"title\":\"1936\",\"count\":114},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":132},{\"id\":\"1933\",\"title\":\"1933\",\"count\":297},{\"id\":\"1932\",\"title\":\"1932\",\"count\":190},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":160},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":92},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":50},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":42},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":178},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":39},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":67},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":63},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":31},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":44},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":25},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":48},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":35},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":10},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2},{\"id\":\"1000\",\"title\":\"1000\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104443},{\"id\":\"2019\",\"title\":\"2019\",\"count\":189546},{\"id\":\"2018\",\"title\":\"2018\",\"count\":37981},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1653},{\"id\":\"2016\",\"title\":\"2016\",\"count\":127},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803873},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":76105},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":42802},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":30497},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27637},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":17649},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":17542},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15055},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":9896}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803873},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":76105},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27560},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24597},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17301},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15050},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13227},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":8466}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8357},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":98},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":38},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":7},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":6},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":5},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/00x6h5n95\",\"title\":\"Dryad Digital Repository\",\"count\":2}],\"prefixes\":[{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130739},{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":76105},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58819},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56678},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34962},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27560},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20651}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2909},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":736}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":999834},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":5336},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":3}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":25624},{\"id\":\"404\",\"title\":\"404\",\"count\":3520},{\"id\":\"403\",\"title\":\"403\",\"count\":998},{\"id\":\"401\",\"title\":\"401\",\"count\":291},{\"id\":\"500\",\"title\":\"500\",\"count\":275},{\"id\":\"503\",\"title\":\"503\",\"count\":142},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":10},{\"id\":\"502\",\"title\":\"502\",\"count\":3}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -142,8 +142,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:50.370Z", - "time": 1544, + "startedDateTime": "2020-05-04T16:39:24.079Z", + "time": 1302, "timings": { "blocked": -1, "connect": -1, @@ -151,7 +151,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1544 + "wait": 1302 } } ], diff --git a/recordings/Acceptance-anonymous-doi_1082049019/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-anonymous-doi_1082049019/visiting-specific-doi_4109340652/recording.har index 60d372437..0a04cddd2 100644 --- a/recordings/Acceptance-anonymous-doi_1082049019/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-anonymous-doi_1082049019/visiting-specific-doi_4109340652/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | doi/visiting specific doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8272, + "bodySize": 8331, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8272, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8331, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:52.164Z", - "time": 154, + "startedDateTime": "2020-05-04T16:39:25.650Z", + "time": 257, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 154 + "wait": 257 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5309, + "bodySize": 5349, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5309, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5349, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:52.559Z", - "time": 131, + "startedDateTime": "2020-05-04T16:39:26.460Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 131 + "wait": 126 } }, { @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:52.559Z", - "time": 207, + "startedDateTime": "2020-05-04T16:39:26.460Z", + "time": 174, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 174 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:52.743Z", - "time": 369, + "startedDateTime": "2020-05-04T16:39:26.599Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 369 + "wait": 93 } } ], diff --git a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-dois_3257149311/recording.har b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-dois_3257149311/recording.har index 575edd5fb..eceb43d13 100644 --- a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-dois_3257149311/recording.har +++ b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-dois_3257149311/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | provider/visiting provider TIB dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:55.018Z", - "time": 161, + "startedDateTime": "2020-05-04T16:39:28.152Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 161 + "wait": 104 } } ], diff --git a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-info_2741953062/recording.har b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-info_2741953062/recording.har index 73f55b4a9..dbb1ea983 100644 --- a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-info_2741953062/recording.har +++ b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-info_2741953062/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | provider/visiting provider TIB info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:53.906Z", - "time": 84, + "startedDateTime": "2020-05-04T16:39:27.204Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 79 } } ], diff --git a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-prefixes_238909962/recording.har b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-prefixes_238909962/recording.har index 601d20a73..023e3537d 100644 --- a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-prefixes_238909962/recording.har +++ b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-prefixes_238909962/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | provider/visiting provider TIB prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:54.642Z", - "time": 131, + "startedDateTime": "2020-05-04T16:39:27.836Z", + "time": 124, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 131 + "wait": 124 } } ], diff --git a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-repositories_3136768718/recording.har b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-repositories_3136768718/recording.har index 0483001b3..c6db92ad1 100644 --- a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-repositories_3136768718/recording.har +++ b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB-repositories_3136768718/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | provider/visiting provider TIB repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:54.134Z", - "time": 177, + "startedDateTime": "2020-05-04T16:39:27.539Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 177 + "wait": 90 } } ], diff --git a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB_4267189074/recording.har b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB_4267189074/recording.har index 2fe6f17aa..0b035bf18 100644 --- a/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB_4267189074/recording.har +++ b/recordings/Acceptance-anonymous-provider_3494033576/visiting-provider-TIB_4267189074/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | provider/visiting provider TIB", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:53.462Z", - "time": 121, + "startedDateTime": "2020-05-04T16:39:26.909Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 102 } } ], diff --git a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-dois_2492809532/recording.har b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-dois_2492809532/recording.har index 80dd3e159..d6296dbce 100644 --- a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-dois_2492809532/recording.har +++ b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-dois_2492809532/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | repository/visiting repository AWI dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:56.909Z", - "time": 123, + "startedDateTime": "2020-05-04T16:39:29.758Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 134 } } ], diff --git a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-info_2068777189/recording.har b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-info_2068777189/recording.har index 576cf182d..9f0a23a10 100644 --- a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-info_2068777189/recording.har +++ b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-info_2068777189/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | repository/visiting repository AWI info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:55.880Z", - "time": 104, + "startedDateTime": "2020-05-04T16:39:28.811Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 95 } } ], diff --git a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-prefixes_1718690037/recording.har b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-prefixes_1718690037/recording.har index cce2729dc..0bb7d8ca6 100644 --- a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-prefixes_1718690037/recording.har +++ b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI-prefixes_1718690037/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | repository/visiting repository AWI prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:56.130Z", - "time": 287, + "startedDateTime": "2020-05-04T16:39:29.465Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 287 + "wait": 98 } } ], diff --git a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI_3266462663/recording.har b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI_3266462663/recording.har index 4224861a4..f6080bd84 100644 --- a/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI_3266462663/recording.har +++ b/recordings/Acceptance-anonymous-repository_3808139329/visiting-repository-AWI_3266462663/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | repository/visiting repository AWI", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:55.427Z", - "time": 141, + "startedDateTime": "2020-05-04T16:39:28.488Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 141 + "wait": 117 } } ], diff --git a/recordings/Acceptance-anonymous-user_2535487342/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-anonymous-user_2535487342/visiting-specific-user_253064087/recording.har index 2901b7728..7aa07d550 100644 --- a/recordings/Acceptance-anonymous-user_2535487342/visiting-specific-user_253064087/recording.har +++ b/recordings/Acceptance-anonymous-user_2535487342/visiting-specific-user_253064087/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | user/visiting specific user", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -39,7 +39,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1290, - "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" + "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" }, "cookies": [], "headers": [ @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:57.783Z", - "time": 231, + "startedDateTime": "2020-05-04T16:39:30.628Z", + "time": 210, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 231 + "wait": 210 } }, { @@ -103,11 +103,11 @@ "url": "https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405" }, "response": { - "bodySize": 66619, + "bodySize": 65704, "content": { "mimeType": "application/json; charset=utf-8", - "size": 66619, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00359\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00359\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00359\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Ffff\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"ssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Dddd\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939140000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-29T10:41:17.000Z\",\"registered\":\"2019-04-29T10:41:18.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T01:31:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00365\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00365\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00365\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T06:21:10.000Z\",\"registered\":\"2020-04-01T06:21:11.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T06:32:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00362\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00362\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00362\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite44\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":9,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-07T08:11:09.000Z\",\"registered\":\"2019-05-07T08:11:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T04:31:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"pending teeeeeeeee\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Preprint\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-20T12:43:30.000Z\",\"registered\":\"2019-02-20T12:43:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T02:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0065\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0065\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0065\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dfd\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-10/\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T10:29:53.000Z\",\"registered\":\"2019-01-24T10:29:53.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T05:32:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.004\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.004\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.004\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dbg is down!!!!!!!!!!!!!!!!\"},{\"title\":\"Zikoukim\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"Musical Score\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Karamela\"},{\"subject\":\"Music Composition\"},{\"subject\":\"Music Education\"},{\"subject\":\"Musicology\"}],\"contributors\":[{\"name\":\"Dori, Danit Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Danit Sweet\",\"familyName\":\"Dori\",\"affiliation\":[\"Main Campus, Harvard University (Cambridge)\"],\"contributorType\":\"DataCurator\"},{\"name\":\"Jerusalem College Of Technology (Jerusalem)\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-02-14/2020\",\"dateType\":\"Collected\"},{\"date\":\"2020/2024\",\"dateType\":\"Created\"},{\"date\":\"2019-02-14\",\"dateType\":\"Updated\"},{\"date\":\"2019-05/2020\",\"dateType\":\"Valid\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"he\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.1007/s10841-006-9063-4\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"jpg\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Peretz was born and raised in Tiberias. His father was of Moroccan Jewish origin and his mother was of Iraqi Jewish origin. Peretz started singing as a poet in a synagogue in Tiberias at the age of 13 and began to compose songs. At the age of 18 Peretz was inducted into the Israel Defense Forces for obligatory military service. During his service, he performed \\\"שיר המעלות‬\\\", during Yom Hazikaron (the Israeli Memorial Day) ceremonies held at his base that received positive feedback leading to him serving in a military music band. In 2002, he started writing songs while in the Army. After release from the Army, he released his first album in 2005 entitled Mabit El Hamromim (מביט אל המרומים‬) that saw sale of over 10,000 copies in Israel\",\"descriptionType\":\"Methods\"},{\"description\":\"2017: Bucher Chadash (בחור חדש) (meaning New Guy)\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"Moshe Peretz (Hebrew: משה פרץ‬; born 10 May 1983) is an Israeli \\\"Mizrahi\\\" pop singer-songwriter and composer. He is also currently serving as a judge for the first season of The X Factor Israel.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Tiberias, Israel\"},{\"geoLocationPoint\":{\"pointLatitude\":\"10.0\",\"pointLongitude\":\"95.0\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"55.0\",\"northBoundLatitude\":\"9.0\",\"southBoundLatitude\":\"21.0\",\"westBoundLongitude\":\"95.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Go Music\",\"funderName\":\"Hadassah Medical Center (Jerusalem)\",\"awardNumber\":\"Music\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-07T06:52:08.000Z\",\"registered\":\"2019-02-07T06:52:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00370\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00370\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00370\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"sasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-06-28\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9942040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-04T05:25:24.000Z\",\"registered\":\"2019-06-04T05:25:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T02:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0057\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0057\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0057\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"sasasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933041400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-23T12:59:24.000Z\",\"registered\":\"2019-01-23T12:59:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-21T01:01:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-18T02:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123h\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123h\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Vanity Fair\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://beahan.name/domenic.treutel\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":335,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-31T21:41:43.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-18T01:01:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00356\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00356\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00356\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"tytytyty hjhjh\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018-08-24\",\"dateType\":\"Accepted\"},{\"date\":\"2017-04-01\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"},{\"rights\":\"aaaaaab jm jjjjjjjjjjjj opppppppppp\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9938841000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T10:54:22.000Z\",\"registered\":\"2019-04-18T10:54:23.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-17T22:00:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3030-53-3821\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3030-53-3821\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Precious Bane\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://schillermohr.com/theda_marks\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T21:25:18.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T21:32:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00368\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00368\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00368\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test4545455\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9940741400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-22T11:12:13.000Z\",\"registered\":\"2019-05-22T11:12:13.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-17T20:31:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"},{\"nameIdentifier\":\"WWW\",\"nameIdentifierScheme\":\"Wikidata\"}]}],\"titles\":[{\"title\":\"my doi test sand cont\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Adam, Omer\",\"nameType\":\"Personal\",\"givenName\":\"Omer\",\"familyName\":\"Adam\",\"contributorType\":\"Other\",\"nameIdentifiers\":[{\"nameIdentifier\":\"llll\",\"nameIdentifierScheme\":\"Library of Congress Name Authority File Number\"},{\"nameIdentifier\":\"VVV\",\"nameIdentifierScheme\":\"VIAF\"},{\"nameIdentifier\":\"pppp\",\"nameIdentifierScheme\":\"Pubmed author ID\"},{\"nameIdentifier\":\"ww\",\"nameIdentifierScheme\":\"Wikidata\"},{\"nameIdentifier\":\"pp\",\"nameIdentifierScheme\":\"Pivot ID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2016-05-04\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T20:57:27.000Z\",\"registered\":\"2019-04-18T20:57:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:31:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:01:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T01:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-16T22:03:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":83,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":83}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":60},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":66},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":17}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":66},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":15},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":66},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":2},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":66},{\"id\":\"test\",\"title\":\"Test\",\"count\":12},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":4},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":70},{\"id\":\"1\",\"title\":\"1\",\"count\":5}],\"linkChecksSchemaOrgId\":5,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":12},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":12},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":12},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":12},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":12},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":12},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":12},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":4},{\"id\":\"Karamela\",\"title\":\"Karamela\",\"count\":3},{\"id\":\"Music Composition\",\"title\":\"Music Composition\",\"count\":3},{\"id\":\"Music Education\",\"title\":\"Music Education\",\"count\":3},{\"id\":\"Musicology\",\"title\":\"Musicology\",\"count\":3},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":3},{\"id\":\"Architecture\",\"title\":\"Architecture\",\"count\":1},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":1}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" + "size": 65704, + "text": "{\"data\":[{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T05:31:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0034\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0034\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0034\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"test datacite sssssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[\"4568.5 kb\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-SA V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc-sa/4.0\"}],\"descriptions\":[{\"description\":\"my abstract description!\",\"descriptionType\":\"Abstract\"},{\"description\":\"cool methods\",\"descriptionType\":\"Methods\"},{\"description\":\"cool methods secont one\",\"descriptionType\":\"Methods\"},{\"description\":\"cool techinal info\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"additional or other???\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-15T09:11:24.000Z\",\"registered\":\"2020-04-06T08:46:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-03T09:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"gggg, aaaa\",\"nameType\":\"Personal\",\"givenName\":\"aaaa\",\"familyName\":\"gggg\",\"affiliation\":[]},{\"name\":\"My Group Author\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test group author\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"My Group 2\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-14T03:45:44.000Z\",\"registered\":\"2019-08-14T03:45:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0066\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0066\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0066\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"בהבסה\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08/0002-12\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"png\",\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T11:57:38.000Z\",\"registered\":\"2019-01-24T11:57:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T05:31:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cool_conf.0037\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cool_conf.0037\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cool_conf.0037\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearcherID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"ERA\"}]}],\"titles\":[{\"title\":\"Test url\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Conference abstract\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-16T16:41:22.000Z\",\"registered\":\"2019-01-16T16:53:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T04:31:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00357\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00357\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00357\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Lea Sweet\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Alzheimer's research & therapy\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-13T09:00:16.000Z\",\"registered\":\"2020-02-13T09:00:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-02T10:02:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0090\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0090\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0090\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"wqwqwqw\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Model\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-17T09:37:45.000Z\",\"registered\":\"2019-02-17T09:37:47.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T13:01:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/from_sand_datacite.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/from_sand_datacite.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/from_sand_datacite.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Bayandina, O. S\",\"nameType\":\"Personal\",\"givenName\":\"O. S\",\"familyName\":\"Bayandina\",\"affiliation\":[]},{\"name\":\"Alakoz, A. V\",\"nameType\":\"Personal\",\"givenName\":\"A. V\",\"familyName\":\"Alakoz\",\"affiliation\":[]},{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Val’tts, I. E\",\"nameType\":\"Personal\",\"givenName\":\"I. E\",\"familyName\":\"Val’tts\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Magnetic fields in methanol maser condensations based on data for related regions. Seven sources: Observational parameters\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-17T05:45:01.000Z\",\"registered\":\"2020-02-17T05:45:02.000Z\",\"published\":\"2013\",\"updated\":\"2020-05-01T12:02:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/10377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/10377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/10377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite subject\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-20T10:22:10.000Z\",\"registered\":\"2019-11-20T10:22:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T10:02:47.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0033\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0033\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0033\",\"identifierType\":\"DOI\"},{\"identifier\":\"1111-2222\",\"identifierType\":\"ISSN\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"TEST for Job - data cite - was existing333333333333\"}],\"publisher\":\"fsgs\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-14T10:33:23.000Z\",\"registered\":\"2019-02-13T11:54:32.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-30T10:31:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/06377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/06377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/06377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.5555/test.11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-19T12:32:09.000Z\",\"registered\":\"2019-11-19T12:32:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-29T09:00:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-29T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T13:34:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T13:34:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0064\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0064\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0064\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"geo\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"fgsfgsg\\nsgsgs\"},{\"geoLocationPlace\":\"gsgsg\\nsgsgsg\"}],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T08:39:07.000Z\",\"registered\":\"2019-01-24T08:39:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-28T09:01:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cw.00040\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cw.00040\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cw.00040\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Manevitz, Larry\",\"nameType\":\"Personal\",\"givenName\":\"Larry\",\"familyName\":\"Manevitz\",\"affiliation\":[]},{\"name\":\"Abbas, Emily Funny\",\"nameType\":\"Personal\",\"givenName\":\"Emily Funny\",\"familyName\":\"Abbas\",\"affiliation\":[\"University of Iowa Libraries, Nursing\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Dance1\"}],\"publisher\":\"University of Iowa Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"test type\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Closed\"},{\"rights\":\"Test copyright\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-23T16:16:43.000Z\",\"registered\":\"2019-05-23T16:16:44.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T05:32:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":84,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":84}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":67},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":17}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":67},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":15},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":67},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":2},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":34}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" }, "cookies": [], "headers": [ @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:57.783Z", - "time": 267, + "startedDateTime": "2020-05-04T16:39:30.628Z", + "time": 242, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 267 + "wait": 242 } } ], diff --git a/recordings/Acceptance-anonymous-user_2535487342/visiting-users_37556140/recording.har b/recordings/Acceptance-anonymous-user_2535487342/visiting-users_37556140/recording.har index afc14232f..43908d25d 100644 --- a/recordings/Acceptance-anonymous-user_2535487342/visiting-users_37556140/recording.har +++ b/recordings/Acceptance-anonymous-user_2535487342/visiting-users_37556140/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | anonymous | user/visiting users", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,7 +67,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 8217, - "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":66889,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" + "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":67002,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" }, "cookies": [], "headers": [ @@ -86,8 +86,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:57.351Z", - "time": 152, + "startedDateTime": "2020-05-04T16:39:30.309Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -95,7 +95,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 152 + "wait": 146 } } ], diff --git a/recordings/Acceptance-client_admin-admin_1084834870/is-logged-in_3542225560/recording.har b/recordings/Acceptance-client_admin-admin_1084834870/is-logged-in_3542225560/recording.har index 6cba9532e..3779fa1e5 100644 --- a/recordings/Acceptance-client_admin-admin_1084834870/is-logged-in_3542225560/recording.har +++ b/recordings/Acceptance-client_admin-admin_1084834870/is-logged-in_3542225560/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | admin/is logged in", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:58.500Z", - "time": 203, + "startedDateTime": "2020-05-04T16:39:31.464Z", + "time": 210, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 203 + "wait": 210 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:59.140Z", - "time": 191, + "startedDateTime": "2020-05-04T16:39:32.082Z", + "time": 253, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 191 + "wait": 253 } } ], diff --git a/recordings/Acceptance-client_admin-admin_1084834870/visiting-homepage_882376104/recording.har b/recordings/Acceptance-client_admin-admin_1084834870/visiting-homepage_882376104/recording.har index 010276d00..9a38df3b0 100644 --- a/recordings/Acceptance-client_admin-admin_1084834870/visiting-homepage_882376104/recording.har +++ b/recordings/Acceptance-client_admin-admin_1084834870/visiting-homepage_882376104/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | admin/visiting homepage", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:59.517Z", - "time": 172, + "startedDateTime": "2020-05-04T16:39:32.534Z", + "time": 129, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 172 + "wait": 129 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:28:59.989Z", - "time": 262, + "startedDateTime": "2020-05-04T16:39:33.114Z", + "time": 182, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 262 + "wait": 182 } } ], diff --git a/recordings/Acceptance-client_admin-admin_1084834870/visiting-info_3527359880/recording.har b/recordings/Acceptance-client_admin-admin_1084834870/visiting-info_3527359880/recording.har index 708844883..ab35aa751 100644 --- a/recordings/Acceptance-client_admin-admin_1084834870/visiting-info_3527359880/recording.har +++ b/recordings/Acceptance-client_admin-admin_1084834870/visiting-info_3527359880/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | admin/visiting info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:00.362Z", - "time": 118, + "startedDateTime": "2020-05-04T16:39:33.501Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 100 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:00.623Z", - "time": 138, + "startedDateTime": "2020-05-04T16:39:34.032Z", + "time": 144, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 144 } } ], diff --git a/recordings/Acceptance-client_admin-admin_1084834870/visiting-prefixes_435827572/recording.har b/recordings/Acceptance-client_admin-admin_1084834870/visiting-prefixes_435827572/recording.har index 4fad609c6..7a4a49728 100644 --- a/recordings/Acceptance-client_admin-admin_1084834870/visiting-prefixes_435827572/recording.har +++ b/recordings/Acceptance-client_admin-admin_1084834870/visiting-prefixes_435827572/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | admin/visiting prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -75,11 +75,11 @@ "url": "https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 30811, + "bodySize": 28695, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30811, - "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1978},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":289},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":300},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":283},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":165},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":158},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":131},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":129},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":120},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":93},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":64},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":55},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":54},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":53},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":51},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":38}],\"clients\":[{\"id\":\"cdl.ual\",\"title\":\"University of Alberta Libraries\",\"count\":13},{\"id\":\"tib.kisti\",\"title\":\"Korea Institute of Science and Technology Information\",\"count\":9},{\"id\":\"bl.imperial\",\"title\":\"Imperial College London\",\"count\":6},{\"id\":\"cdl.ucsd\",\"title\":\"UCSD\",\"count\":5},{\"id\":\"inist.ifremer\",\"title\":\"Institut Français de Recherche pour l'Exploitation de la Mer\",\"count\":5},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":4},{\"id\":\"ands.centre-8\",\"title\":\"CSIRO\",\"count\":3},{\"id\":\"ands.centre14\",\"title\":\"Australian National Data Service\",\"count\":3},{\"id\":\"bibtag.test\",\"title\":\"Workshop Test Account\",\"count\":3},{\"id\":\"bl.lincoln\",\"title\":\"University of Lincoln\",\"count\":3},{\"id\":\"bl.old-api\",\"title\":\"BL's DOI service prototype\",\"count\":3},{\"id\":\"dk.dc\",\"title\":\"DTIC Test Datacenter\",\"count\":3},{\"id\":\"nrct.db1\",\"title\":\"NRCT Data Center\",\"count\":3},{\"id\":\"purdue.ezid\",\"title\":\"PURDUE EZID\",\"count\":3},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" + "size": 28695, + "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1988},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":288},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -98,8 +98,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:02.258Z", - "time": 315, + "startedDateTime": "2020-05-04T16:39:36.913Z", + "time": 237, "timings": { "blocked": -1, "connect": -1, @@ -107,7 +107,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 315 + "wait": 237 } }, { @@ -139,11 +139,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -162,8 +162,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:02.609Z", - "time": 114, + "startedDateTime": "2020-05-04T16:39:37.180Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -171,7 +171,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 97 } }, { @@ -198,11 +198,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -221,8 +221,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:02.886Z", - "time": 99, + "startedDateTime": "2020-05-04T16:39:37.434Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -230,7 +230,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 111 } } ], diff --git a/recordings/Acceptance-client_admin-admin_1084834870/visiting-providers_1061836054/recording.har b/recordings/Acceptance-client_admin-admin_1084834870/visiting-providers_1061836054/recording.har index 51832fecf..05dda2e1d 100644 --- a/recordings/Acceptance-client_admin-admin_1084834870/visiting-providers_1061836054/recording.har +++ b/recordings/Acceptance-client_admin-admin_1084834870/visiting-providers_1061836054/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | admin/visiting providers", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -83,11 +83,11 @@ "url": "https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 38580, + "bodySize": 39345, "content": { "mimeType": "application/json; charset=utf-8", - "size": 38580, - "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-03-19T05:10:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}},{\"id\":\"brown\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brown University Library\",\"displayName\":\"Brown University Library\",\"symbol\":\"BROWN\",\"website\":\"https://library.brown.edu/\",\"systemEmail\":\"bdr@brown.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05gq02987\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-05-31T13:54:32.000Z\",\"updated\":\"2019-08-13T14:29:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70139\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":408,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":123},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":243},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":141},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":8},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":401},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 39345, + "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-05-04T03:08:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"ardcanu\",\"type\":\"providers\"},{\"id\":\"jbtest\",\"type\":\"providers\"},{\"id\":\"uc\",\"type\":\"providers\"},{\"id\":\"jbtestwo\",\"type\":\"providers\"},{\"id\":\"jbthree\",\"type\":\"providers\"},{\"id\":\"ardcliz\",\"type\":\"providers\"},{\"id\":\"jbfive\",\"type\":\"providers\"},{\"id\":\"lwone\",\"type\":\"providers\"},{\"id\":\"lwardct\",\"type\":\"providers\"},{\"id\":\"tardc\",\"type\":\"providers\"},{\"id\":\"tcdu\",\"type\":\"providers\"},{\"id\":\"tunsw\",\"type\":\"providers\"},{\"id\":\"tjcu\",\"type\":\"providers\"},{\"id\":\"tlatrobe\",\"type\":\"providers\"},{\"id\":\"taad\",\"type\":\"providers\"},{\"id\":\"tuwa\",\"type\":\"providers\"},{\"id\":\"tcsiro\",\"type\":\"providers\"},{\"id\":\"tmonash\",\"type\":\"providers\"},{\"id\":\"tala\",\"type\":\"providers\"},{\"id\":\"tanu\",\"type\":\"providers\"},{\"id\":\"tdpaw\",\"type\":\"providers\"},{\"id\":\"taic\",\"type\":\"providers\"},{\"id\":\"tansto\",\"type\":\"providers\"},{\"id\":\"tnti\",\"type\":\"providers\"}]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"lwardct\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons LWTEST\",\"displayName\":\"Australian Research Data Commons LWTEST\",\"symbol\":\"LWARDCT\",\"website\":null,\"systemEmail\":\"liz.woods@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-29T04:22:26.000Z\",\"updated\":\"2020-04-29T04:25:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":439,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":135},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":125},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":245},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":170},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":9},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":432},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -106,8 +106,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:00.876Z", - "time": 185, + "startedDateTime": "2020-05-04T16:39:34.449Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -115,7 +115,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 185 + "wait": 160 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:01.079Z", - "time": 96, + "startedDateTime": "2020-05-04T16:39:34.641Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 117 } }, { @@ -206,11 +206,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -229,8 +229,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:01.262Z", - "time": 108, + "startedDateTime": "2020-05-04T16:39:35.284Z", + "time": 190, "timings": { "blocked": -1, "connect": -1, @@ -238,7 +238,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 190 } } ], diff --git a/recordings/Acceptance-client_admin-admin_1084834870/visiting-repositories_601244364/recording.har b/recordings/Acceptance-client_admin-admin_1084834870/visiting-repositories_601244364/recording.har deleted file mode 100644 index 7152daa80..000000000 --- a/recordings/Acceptance-client_admin-admin_1084834870/visiting-repositories_601244364/recording.har +++ /dev/null @@ -1,252 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | admin/visiting repositories", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "a021884f7dc8c88466d3581d0f6dcc97", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 937, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "certificate", - "value": "" - }, - { - "name": "client-type", - "value": "" - }, - { - "name": "include", - "value": "provider" - }, - { - "name": "include-deleted", - "value": "" - }, - { - "name": "page", - "value": { - "number": "1", - "size": "25" - } - }, - { - "name": "provider-id", - "value": "" - }, - { - "name": "query", - "value": "" - }, - { - "name": "repository-type", - "value": "" - }, - { - "name": "size", - "value": "25" - }, - { - "name": "software", - "value": "" - }, - { - "name": "sort", - "value": "" - }, - { - "name": "year", - "value": "" - } - ], - "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" - }, - "response": { - "bodySize": 132870, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 132870, - "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":\"## I am a repository\\n\\n- one repo\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-03-12T10:05:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-03-24T09:39:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ethz.test\",\"type\":\"clients\"},{\"id\":\"ethz.e-coll\",\"type\":\"clients\"},{\"id\":\"ethz.seals\",\"type\":\"clients\"},{\"id\":\"ethz.dodis\",\"type\":\"clients\"},{\"id\":\"ethz.ar\",\"type\":\"clients\"},{\"id\":\"ethz.uzh-al\",\"type\":\"clients\"},{\"id\":\"ethz.corssa\",\"type\":\"clients\"},{\"id\":\"ethz.jroi\",\"type\":\"clients\"},{\"id\":\"ethz.unibas\",\"type\":\"clients\"},{\"id\":\"ethz.wgms\",\"type\":\"clients\"},{\"id\":\"ethz.ids-lu\",\"type\":\"clients\"},{\"id\":\"ethz.lives\",\"type\":\"clients\"},{\"id\":\"ethz.epfl\",\"type\":\"clients\"},{\"id\":\"ethz.da-rd\",\"type\":\"clients\"},{\"id\":\"ethz.e-manus\",\"type\":\"clients\"},{\"id\":\"ethz.ubasojs\",\"type\":\"clients\"},{\"id\":\"ethz.ma\",\"type\":\"clients\"},{\"id\":\"ethz.bopalt\",\"type\":\"clients\"},{\"id\":\"ethz.zora\",\"type\":\"clients\"},{\"id\":\"ethz.ecodices\",\"type\":\"clients\"},{\"id\":\"ethz.sed\",\"type\":\"clients\"},{\"id\":\"ethz.e-rara\",\"type\":\"clients\"},{\"id\":\"ethz.li\",\"type\":\"clients\"},{\"id\":\"ethz.dmm\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ad\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ba\",\"type\":\"clients\"},{\"id\":\"ethz.smif\",\"type\":\"clients\"},{\"id\":\"ethz.lo\",\"type\":\"clients\"},{\"id\":\"ethz.fsw\",\"type\":\"clients\"},{\"id\":\"ethz.itis\",\"type\":\"clients\"},{\"id\":\"ethz.infoclio\",\"type\":\"clients\"},{\"id\":\"ethz.boris\",\"type\":\"clients\"},{\"id\":\"ethz.bopitw\",\"type\":\"clients\"},{\"id\":\"ethz.wsl\",\"type\":\"clients\"},{\"id\":\"ethz.iumsppub\",\"type\":\"clients\"},{\"id\":\"ethz.iumspdat\",\"type\":\"clients\"},{\"id\":\"ethz.rfre\",\"type\":\"clients\"},{\"id\":\"ethz.phsg\",\"type\":\"clients\"},{\"id\":\"ethz.bopjemr\",\"type\":\"clients\"},{\"id\":\"ethz.permos\",\"type\":\"clients\"},{\"id\":\"ethz.epics3\",\"type\":\"clients\"},{\"id\":\"ethz.inblog\",\"type\":\"clients\"},{\"id\":\"ethz.hopepsy\",\"type\":\"clients\"},{\"id\":\"ethz.zhaw\",\"type\":\"clients\"},{\"id\":\"ethz.ms\",\"type\":\"clients\"},{\"id\":\"ethz.ubemo\",\"type\":\"clients\"},{\"id\":\"ethz.epics-bs\",\"type\":\"clients\"},{\"id\":\"ethz.hopesui\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ki\",\"type\":\"clients\"},{\"id\":\"ethz.epics-st\",\"type\":\"clients\"},{\"id\":\"ethz.soz\",\"type\":\"clients\"},{\"id\":\"ethz.wsllfi\",\"type\":\"clients\"},{\"id\":\"ethz.bopinfo\",\"type\":\"clients\"},{\"id\":\"ethz.dodisint\",\"type\":\"clients\"},{\"id\":\"ethz.hes\",\"type\":\"clients\"},{\"id\":\"ethz.marvel\",\"type\":\"clients\"},{\"id\":\"ethz.historiaiuris\",\"type\":\"clients\"},{\"id\":\"ethz.agroscope\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3929\",\"type\":\"prefixes\"},{\"id\":\"10.3930\",\"type\":\"prefixes\"},{\"id\":\"10.3931\",\"type\":\"prefixes\"},{\"id\":\"10.3932\",\"type\":\"prefixes\"},{\"id\":\"10.3933\",\"type\":\"prefixes\"},{\"id\":\"10.5075\",\"type\":\"prefixes\"},{\"id\":\"10.5076\",\"type\":\"prefixes\"},{\"id\":\"10.5078\",\"type\":\"prefixes\"},{\"id\":\"10.5079\",\"type\":\"prefixes\"},{\"id\":\"10.5166\",\"type\":\"prefixes\"},{\"id\":\"10.5167\",\"type\":\"prefixes\"},{\"id\":\"10.5169\",\"type\":\"prefixes\"},{\"id\":\"10.5170\",\"type\":\"prefixes\"},{\"id\":\"10.5448\",\"type\":\"prefixes\"},{\"id\":\"10.5449\",\"type\":\"prefixes\"},{\"id\":\"10.5450\",\"type\":\"prefixes\"},{\"id\":\"10.5451\",\"type\":\"prefixes\"},{\"id\":\"10.5452\",\"type\":\"prefixes\"},{\"id\":\"10.5168\",\"type\":\"prefixes\"},{\"id\":\"10.5903\",\"type\":\"prefixes\"},{\"id\":\"10.5904\",\"type\":\"prefixes\"},{\"id\":\"10.5905\",\"type\":\"prefixes\"},{\"id\":\"10.5906\",\"type\":\"prefixes\"},{\"id\":\"10.5907\",\"type\":\"prefixes\"},{\"id\":\"10.12682\",\"type\":\"prefixes\"},{\"id\":\"10.12683\",\"type\":\"prefixes\"},{\"id\":\"10.12684\",\"type\":\"prefixes\"},{\"id\":\"10.12685\",\"type\":\"prefixes\"},{\"id\":\"10.12686\",\"type\":\"prefixes\"},{\"id\":\"10.7890\",\"type\":\"prefixes\"},{\"id\":\"10.7891\",\"type\":\"prefixes\"},{\"id\":\"10.7894\",\"type\":\"prefixes\"},{\"id\":\"10.7892\",\"type\":\"prefixes\"},{\"id\":\"10.13097\",\"type\":\"prefixes\"},{\"id\":\"10.13096\",\"type\":\"prefixes\"},{\"id\":\"10.13100\",\"type\":\"prefixes\"},{\"id\":\"10.13099\",\"type\":\"prefixes\"},{\"id\":\"10.13098\",\"type\":\"prefixes\"},{\"id\":\"10.13093\",\"type\":\"prefixes\"},{\"id\":\"10.13092\",\"type\":\"prefixes\"},{\"id\":\"10.13095\",\"type\":\"prefixes\"},{\"id\":\"10.13094\",\"type\":\"prefixes\"},{\"id\":\"10.13091\",\"type\":\"prefixes\"},{\"id\":\"10.16909\",\"type\":\"prefixes\"},{\"id\":\"10.16908\",\"type\":\"prefixes\"},{\"id\":\"10.16907\",\"type\":\"prefixes\"},{\"id\":\"10.16906\",\"type\":\"prefixes\"},{\"id\":\"10.16905\",\"type\":\"prefixes\"},{\"id\":\"10.16904\",\"type\":\"prefixes\"},{\"id\":\"10.16903\",\"type\":\"prefixes\"},{\"id\":\"10.16902\",\"type\":\"prefixes\"},{\"id\":\"10.16911\",\"type\":\"prefixes\"},{\"id\":\"10.16910\",\"type\":\"prefixes\"},{\"id\":\"10.18749\",\"type\":\"prefixes\"},{\"id\":\"10.18748\",\"type\":\"prefixes\"},{\"id\":\"10.18747\",\"type\":\"prefixes\"},{\"id\":\"10.18752\",\"type\":\"prefixes\"},{\"id\":\"10.18753\",\"type\":\"prefixes\"},{\"id\":\"10.18750\",\"type\":\"prefixes\"},{\"id\":\"10.18751\",\"type\":\"prefixes\"},{\"id\":\"10.18756\",\"type\":\"prefixes\"},{\"id\":\"10.18754\",\"type\":\"prefixes\"},{\"id\":\"10.18755\",\"type\":\"prefixes\"},{\"id\":\"10.21258\",\"type\":\"prefixes\"},{\"id\":\"10.21257\",\"type\":\"prefixes\"},{\"id\":\"10.21256\",\"type\":\"prefixes\"},{\"id\":\"10.21255\",\"type\":\"prefixes\"},{\"id\":\"10.21259\",\"type\":\"prefixes\"},{\"id\":\"10.21260\",\"type\":\"prefixes\"},{\"id\":\"10.21261\",\"type\":\"prefixes\"},{\"id\":\"10.21263\",\"type\":\"prefixes\"},{\"id\":\"10.21262\",\"type\":\"prefixes\"},{\"id\":\"10.21264\",\"type\":\"prefixes\"},{\"id\":\"10.22019\",\"type\":\"prefixes\"},{\"id\":\"10.22018\",\"type\":\"prefixes\"},{\"id\":\"10.22013\",\"type\":\"prefixes\"},{\"id\":\"10.22012\",\"type\":\"prefixes\"},{\"id\":\"10.22015\",\"type\":\"prefixes\"},{\"id\":\"10.22014\",\"type\":\"prefixes\"},{\"id\":\"10.22016\",\"type\":\"prefixes\"},{\"id\":\"10.22009\",\"type\":\"prefixes\"},{\"id\":\"10.26039\",\"type\":\"prefixes\"},{\"id\":\"10.24435\",\"type\":\"prefixes\"},{\"id\":\"10.24434\",\"type\":\"prefixes\"},{\"id\":\"10.24437\",\"type\":\"prefixes\"},{\"id\":\"10.24439\",\"type\":\"prefixes\"},{\"id\":\"10.24442\",\"type\":\"prefixes\"},{\"id\":\"10.24445\",\"type\":\"prefixes\"},{\"id\":\"10.24452\",\"type\":\"prefixes\"},{\"id\":\"10.26032\",\"type\":\"prefixes\"},{\"id\":\"10.26035\",\"type\":\"prefixes\"},{\"id\":\"10.26037\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2098,\"totalPages\":84,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":183},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":232},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":147},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":119},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":115},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":93},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":59},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":59},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":55},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":53},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":47},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":46},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":43},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":41}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2040},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":68},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":23},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":16},{\"id\":\"other\",\"title\":\"Other\",\"count\":13},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":9},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":16},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":14},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1},{\"id\":\"islandora\",\"title\":\"Islandora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:01.455Z", - "time": 236, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 236 - } - }, - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:01.732Z", - "time": 113, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 113 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:01.957Z", - "time": 135, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 135 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har deleted file mode 100644 index a84694048..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har +++ /dev/null @@ -1,925 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/create draft doi", - "browser": { - "name": "Chrome", - "version": "80.0.3987.163" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:57.224Z", - "time": 139, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 139 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.134Z", - "time": 122, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 122 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.134Z", - "time": 213, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 213 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.397Z", - "time": 127, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 127 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/wdx7-qr27\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.397Z", - "time": 132, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 132 - } - }, - { - "_id": "9c69df4d8d2a08d32bcaaa32d3811630", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 778, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80225" - }, - "response": { - "bodySize": 459, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.615Z", - "time": 136, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 136 - } - }, - { - "_id": "c964e835fa237b8cb3538aa71455f28a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/wdx7-qr27" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fwdx7-qr27" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fwdx7-qr27\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.656Z", - "time": 130, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 130 - } - }, - { - "_id": "c964e835fa237b8cb3538aa71455f28a", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/wdx7-qr27" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fwdx7-qr27" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fwdx7-qr27\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.831Z", - "time": 73, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 73 - } - }, - { - "_id": "fe47109f63d661c5d5ff1d67928c35b8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/2pwf-ry88" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:58.933Z", - "time": 103, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 103 - } - }, - { - "_id": "fe47109f63d661c5d5ff1d67928c35b8", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/2pwf-ry88" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:59.281Z", - "time": 186, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 186 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:59.281Z", - "time": 241, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 241 - } - }, - { - "_id": "fe47109f63d661c5d5ff1d67928c35b8", - "_order": 2, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/2pwf-ry88" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:30:59.546Z", - "time": 89, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 89 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 2, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:32:02.079Z", - "time": 156, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 156 - } - }, - { - "_id": "b4f1065d3b90a2f7503fedbdc6c38523", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 657, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, - { - "name": "accept", - "value": "application/vnd.api+json" - } - ], - "headersSize": 780, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" - }, - "response": { - "bodySize": 1925, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1925, - "text": "{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"prefix\":\"10.80225\",\"suffix\":\"2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvMlBXRi1SWTg4PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUvPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcy8+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 201, - "statusText": "Created" - }, - "startedDateTime": "2020-05-03T14:16:01.629Z", - "time": 197, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 197 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/delete-draft-doi_1403517569/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/delete-draft-doi_1403517569/recording.har deleted file mode 100644 index 00e44c954..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/delete-draft-doi_1403517569/recording.har +++ /dev/null @@ -1,521 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/delete draft doi", - "browser": { - "name": "Chrome", - "version": "80.0.3987.163" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "88187ddc340f5e404319157dbef2bbef", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 801, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "client" - } - ], - "url": "https://api.test.datacite.org/dois/10.80225%2F2pwf-ry88?include=client" - }, - "response": { - "bodySize": 2587, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 2587, - "text": "{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"prefix\":\"10.80225\",\"suffix\":\"2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvMlBXRi1SWTg4PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUvPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcy8+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T10:30:59.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:30:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:43:31.240Z", - "time": 192, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 192 - } - }, - { - "_id": "88187ddc340f5e404319157dbef2bbef", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 801, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "client" - } - ], - "url": "https://api.test.datacite.org/dois/10.80225%2F2pwf-ry88?include=client" - }, - "response": { - "bodySize": 2587, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 2587, - "text": "{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"prefix\":\"10.80225\",\"suffix\":\"2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvMlBXRi1SWTg4PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUvPgogICAgPC9jcmVhdG9yPgogIDwvY3JlYXRvcnM+CiAgPHRpdGxlcy8+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T10:30:59.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:30:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:43:31.520Z", - "time": 156, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 156 - } - }, - { - "_id": "8b3492175450fcee102e938e70cf38f6", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 779, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/datacite" - }, - "response": { - "bodySize": 5309, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5309, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:43:31.521Z", - "time": 87, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 87 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:43:31.619Z", - "time": 106, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 106 - } - }, - { - "_id": "10f586ca3d0e6accddf43f933dc0efa3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 789, - "httpVersion": "HTTP/1.1", - "method": "DELETE", - "queryString": [], - "url": "https://api.test.datacite.org/dois/10.80225%2F2pwf-ry88" - }, - "response": { - "bodySize": 0, - "content": { - "mimeType": "text/plain", - "size": 0 - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "no-cache" - } - ], - "headersSize": 27, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 204, - "statusText": "No Content" - }, - "startedDateTime": "2020-04-23T10:43:31.774Z", - "time": 281, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 281 - } - }, - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":17,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:43:32.081Z", - "time": 179, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 179 - } - }, - { - "_id": "a8bdd5e695ceb9644d3d0ed97e7615da", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 1020, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "affiliation", - "value": "true" - }, - { - "name": "affiliation-id", - "value": "" - }, - { - "name": "certificate", - "value": "" - }, - { - "name": "client-id", - "value": "datacite.test" - }, - { - "name": "created", - "value": "" - }, - { - "name": "link-check-status", - "value": "" - }, - { - "name": "page", - "value": { - "number": "1", - "size": "25" - } - }, - { - "name": "person-id", - "value": "" - }, - { - "name": "prefix", - "value": "" - }, - { - "name": "provider-id", - "value": "" - }, - { - "name": "query", - "value": "" - }, - { - "name": "registered", - "value": "" - }, - { - "name": "resource-type-id", - "value": "" - }, - { - "name": "schema-version", - "value": "" - }, - { - "name": "size", - "value": "25" - }, - { - "name": "sort", - "value": "" - }, - { - "name": "source", - "value": "" - }, - { - "name": "state", - "value": "" - }, - { - "name": "year", - "value": "" - } - ], - "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" - }, - "response": { - "bodySize": 34308, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 34308, - "text": "{\"data\":[{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:35:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T10:30:59.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:30:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T09:00:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T08:19:42.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T08:19:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T08:00:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite796\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fqse-wb15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fqse-wb15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/fqse-wb15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Trento, Giovanna\",\"nameType\":\"Personal\",\"givenName\":\"Giovanna\",\"familyName\":\"Trento\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Pier Paolo Pasolini and Pan-Meridional Italianness\"}],\"publisher\":\"Turia + Kant\",\"container\":{\"type\":\"Series\",\"title\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities\",\"volume\":\"Geographies\",\"lastPage\":\"83\",\"firstPage\":\"59\",\"identifier\":\"https://doi.org/10.25620/ci-06\",\"identifierType\":\"DOI\"},\"publicationYear\":2012,\"subjects\":[{\"subject\":\"Pasolini, Pier Paolo\"},{\"subject\":\"Italy, Southern\"},{\"subject\":\"panafricanism\"},{\"subject\":\"colonialism\"}],\"contributors\":[{\"name\":\"Di Blasi, Luca\",\"nameType\":\"Personal\",\"givenName\":\"Luca\",\"familyName\":\"Di Blasi\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6755-6570\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Gragnolati, Manuele\",\"nameType\":\"Personal\",\"givenName\":\"Manuele\",\"familyName\":\"Gragnolati\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8178-3443\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Holzhey, Christoph F. E.\",\"nameType\":\"Personal\",\"givenName\":\"Christoph F. E.\",\"familyName\":\"Holzhey\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1312-1878\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"inbook\",\"citeproc\":\"chapter\",\"schemaOrg\":\"Chapter\",\"resourceType\":\"Book_chapter\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-06\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"https://www.ici-berlin.org/oa/ci-06/index.html\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-85132-681-9\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-728X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-731X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-print\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-online\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"© by the author(s)\"},{\"rights\":\"This version is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"description\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities, Geographies, 59-83\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T08:18:22.000Z\",\"registered\":null,\"published\":\"2012\",\"updated\":\"2020-04-18T08:18:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-15T12:39:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/ytzz-wq10\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/ytzz-wq10\",\"identifiers\":[],\"creators\":[{\"name\":\"Buys, Matthew\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"},{\"name\":\"ORCID\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04fa4r544\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Matthew Buys\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test title - new form\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sociology\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en\",\"description\":\"Test description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":null,\"northBoundLatitude\":null,\"southBoundLatitude\":null,\"westBoundLongitude\":null},\"geoLocationPlace\":\"Amsterdam\",\"geoLocationPoint\":{\"pointLatitude\":null,\"pointLongitude\":null}}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T07:20:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-07T07:20:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-06T16:42:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7m2v-5757\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7m2v-5757\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/7m2v-5757\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Center For International Earth Science Information Network-CIESIN-Columbia University\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Low Elevation Coastal Zone (LECZ) Urban-Rural Population and Land Area Estimates, Version 3\"},{\"title\":\"Urban-Rural Population and Land Area Estimates, Version 3 (1990, 2000, 2015)\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC)\",\"container\":{},\"publicationYear\":2013,\"subjects\":[{\"subject\":\"climate\"},{\"subject\":\"marine and coastal\"},{\"subject\":\"population\"},{\"subject\":\"sustainability\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"tabular; map; map service\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPreviousVersionOf\",\"relatedIdentifier\":\"10.7927/yyyyy3\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T12:48:27.000Z\",\"registered\":null,\"published\":\"2013\",\"updated\":\"2020-04-06T12:49:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-04-06T07:59:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/yh3e-rp55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/yh3e-rp55\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":null,\"nameIdentifiers\":[]}],\"dates\":[{\"date\":null,\"dateType\":null,\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":null,\"awardNumber\":null,\"funderIdentifier\":null,\"funderIdentifierType\":\"Other\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-04T06:46:13.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-04T06:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/n77d-nz44\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/n77d-nz44\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[\"444\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T09:31:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-30T09:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/kvth-tj94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/kvth-tj94\",\"identifiers\":[{\"identifier\":\"1288-90\",\"identifierType\":\"Pubmed\"}],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6628-8225\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is a new dataset\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Biochemistry\",\"valueUri\":\"jhggff\",\"schemeUri\":\"\",\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Dreyer, Britta\",\"nameType\":\"Personal\",\"givenName\":\"Britta\",\"familyName\":\"Dreyer\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"ar\",\"types\":{\"resourceType\":\"Satellite Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://tib.eu\",\"schemeType\":\"iosfudsfj\",\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.1029/PA004i004p00413\",\"resourceTypeGeneral\":\"Image\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":\"Dublin Core\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Cites\",\"relatedIdentifier\":\"asdadsads\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"EISSN\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"aesfdjäadspujgäapsjgear#jgdfaÖXMCv\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Barcelona\"},{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://tib.eu\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T16:18:09.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-03-27T10:23:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":17,\"totalPages\":1,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":11},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":17}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":17}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":17}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":10},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":7}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":2}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":15},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":2}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"1\",\"title\":\"1\",\"count\":2},{\"id\":\"0\",\"title\":\"0\",\"count\":1}],\"linkChecksSchemaOrgId\":2,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"featured\",\"title\":\"Featured\",\"count\":2},{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":1},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":1},{\"id\":\"Computer and information sciences\",\"title\":\"Computer And Information Sciences\",\"count\":1},{\"id\":\"Italy, Southern\",\"title\":\"Italy, Southern\",\"count\":1},{\"id\":\"Pasolini, Pier Paolo\",\"title\":\"Pasolini, Pier Paolo\",\"count\":1},{\"id\":\"Sociology\",\"title\":\"Sociology\",\"count\":1},{\"id\":\"climate\",\"title\":\"Climate\",\"count\":1},{\"id\":\"colonialism\",\"title\":\"Colonialism\",\"count\":1},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":1},{\"id\":\"instrument\",\"title\":\"Instrument\",\"count\":1},{\"id\":\"marine and coastal\",\"title\":\"Marine And Coastal\",\"count\":1},{\"id\":\"panafricanism\",\"title\":\"Panafricanism\",\"count\":1},{\"id\":\"population\",\"title\":\"Population\",\"count\":1},{\"id\":\"rda\",\"title\":\"Rda\",\"count\":1}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:43:32.081Z", - "time": 298, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 298 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har index 7dfd883e1..e5a5a89c7 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/update-draft-doi_1508057167/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/update draft doi", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2F9fxk-aa96?include=client" }, "response": { - "bodySize": 2981, + "bodySize": 3040, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2981, - "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:00:57.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 3040, + "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:15:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T10:35:14.265Z", - "time": 154, + "startedDateTime": "2020-05-04T16:40:27.512Z", + "time": 225, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 154 + "wait": 225 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2F9fxk-aa96?include=client" }, "response": { - "bodySize": 2981, + "bodySize": 3040, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2981, - "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T10:00:57.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 3040, + "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:15:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T10:35:14.772Z", - "time": 162, + "startedDateTime": "2020-05-04T16:40:28.705Z", + "time": 242, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 162 + "wait": 242 } }, { @@ -163,11 +163,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5309, + "bodySize": 5349, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5309, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5349, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T10:35:14.772Z", - "time": 166, + "startedDateTime": "2020-05-04T16:40:28.706Z", + "time": 208, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 166 + "wait": 208 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T10:35:15.005Z", - "time": 86, + "startedDateTime": "2020-05-04T16:40:29.004Z", + "time": 194, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 194 } }, { @@ -286,11 +286,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2F9fxk-aa96" }, "response": { - "bodySize": 2352, + "bodySize": 2410, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2352, - "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\"}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:15:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2410, + "text": "{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"prefix\":\"10.80225\",\"suffix\":\"9fxk-aa96\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\"}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvOUZYSy1BQTk2PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIi8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iT3RoZXIiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCIvPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -309,8 +309,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-05-03T14:15:59.738Z", - "time": 213, + "startedDateTime": "2020-05-04T16:40:29.416Z", + "time": 284, "timings": { "blocked": -1, "connect": -1, @@ -318,7 +318,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 213 + "wait": 284 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-dois_3774702605/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-dois_3774702605/recording.har index d37271336..c4c99c2c0 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-dois_3774702605/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:03.115Z", - "time": 140, + "startedDateTime": "2020-05-04T16:39:37.825Z", + "time": 124, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 124 } }, { @@ -179,11 +179,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 34562, + "bodySize": 35969, "content": { "mimeType": "application/json; charset=utf-8", - "size": 34562, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T04:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fqse-wb15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fqse-wb15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/fqse-wb15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Trento, Giovanna\",\"nameType\":\"Personal\",\"givenName\":\"Giovanna\",\"familyName\":\"Trento\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Pier Paolo Pasolini and Pan-Meridional Italianness\"}],\"publisher\":\"Turia + Kant\",\"container\":{\"type\":\"Series\",\"title\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities\",\"volume\":\"Geographies\",\"lastPage\":\"83\",\"firstPage\":\"59\",\"identifier\":\"https://doi.org/10.25620/ci-06\",\"identifierType\":\"DOI\"},\"publicationYear\":2012,\"subjects\":[{\"subject\":\"Pasolini, Pier Paolo\"},{\"subject\":\"Italy, Southern\"},{\"subject\":\"panafricanism\"},{\"subject\":\"colonialism\"}],\"contributors\":[{\"name\":\"Di Blasi, Luca\",\"nameType\":\"Personal\",\"givenName\":\"Luca\",\"familyName\":\"Di Blasi\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6755-6570\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Gragnolati, Manuele\",\"nameType\":\"Personal\",\"givenName\":\"Manuele\",\"familyName\":\"Gragnolati\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8178-3443\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Holzhey, Christoph F. E.\",\"nameType\":\"Personal\",\"givenName\":\"Christoph F. E.\",\"familyName\":\"Holzhey\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1312-1878\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"inbook\",\"citeproc\":\"chapter\",\"schemaOrg\":\"Chapter\",\"resourceType\":\"Book_chapter\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-06\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"https://www.ici-berlin.org/oa/ci-06/index.html\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-85132-681-9\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-728X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-731X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-print\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-online\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"© by the author(s)\"},{\"rights\":\"This version is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"description\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities, Geographies, 59-83\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T08:18:22.000Z\",\"registered\":null,\"published\":\"2012\",\"updated\":\"2020-04-18T08:18:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-15T12:39:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/6pkt-sx79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6pkt-sx79\",\"identifiers\":[{\"identifier\":\"dssda\",\"identifierType\":\"ARK\"}],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[{\"name\":\"dsfdfs, fd\",\"nameType\":\"Personal\",\"givenName\":\"fd\",\"familyName\":\"dsfdfs\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[{\"date\":\"2009\",\"dateType\":\"Withdrawn\",\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Documents\",\"relatedIdentifier\":\"dfds\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"ISTC\",\"relatedMetadataScheme\":null}],\"sizes\":[\"32\"],\"formats\":[\"23\"],\"version\":null,\"rightsList\":[{\"rights\":\"Amazon Digital Services License\",\"rightsUri\":\"http://spdx.org/licenses/ADSL.json\"}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":21,\"northBoundLatitude\":12,\"southBoundLatitude\":44,\"westBoundLongitude\":21},\"geoLocationPlace\":\"sdffsd\",\"geoLocationPoint\":{\"pointLatitude\":21,\"pointLongitude\":12}}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Università degli Studi di Cassino e del Lazio Meridionale\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/501100012699\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T11:07:21.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-07T11:08:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/ytzz-wq10\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/ytzz-wq10\",\"identifiers\":[],\"creators\":[{\"name\":\"Buys, Matthew\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"},{\"name\":\"ORCID\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04fa4r544\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Matthew Buys\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test title - new form\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sociology\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en\",\"description\":\"Test description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":null,\"northBoundLatitude\":null,\"southBoundLatitude\":null,\"westBoundLongitude\":null},\"geoLocationPlace\":\"Amsterdam\",\"geoLocationPoint\":{\"pointLatitude\":null,\"pointLongitude\":null}}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T07:20:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-07T07:20:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-06T16:42:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7m2v-5757\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7m2v-5757\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/7m2v-5757\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Center For International Earth Science Information Network-CIESIN-Columbia University\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Low Elevation Coastal Zone (LECZ) Urban-Rural Population and Land Area Estimates, Version 3\"},{\"title\":\"Urban-Rural Population and Land Area Estimates, Version 3 (1990, 2000, 2015)\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC)\",\"container\":{},\"publicationYear\":2013,\"subjects\":[{\"subject\":\"climate\"},{\"subject\":\"marine and coastal\"},{\"subject\":\"population\"},{\"subject\":\"sustainability\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"tabular; map; map service\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPreviousVersionOf\",\"relatedIdentifier\":\"10.7927/yyyyy3\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T12:48:27.000Z\",\"registered\":null,\"published\":\"2013\",\"updated\":\"2020-04-06T12:49:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-04-06T07:59:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/yh3e-rp55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/yh3e-rp55\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":null,\"nameIdentifiers\":[]}],\"dates\":[{\"date\":null,\"dateType\":null,\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":null,\"awardNumber\":null,\"funderIdentifier\":null,\"funderIdentifierType\":\"Other\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-04T06:46:13.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-04T06:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/n77d-nz44\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/n77d-nz44\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[\"444\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T09:31:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-30T09:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/kvth-tj94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/kvth-tj94\",\"identifiers\":[{\"identifier\":\"1288-90\",\"identifierType\":\"Pubmed\"}],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6628-8225\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is a new dataset\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Biochemistry\",\"valueUri\":\"jhggff\",\"schemeUri\":\"\",\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Dreyer, Britta\",\"nameType\":\"Personal\",\"givenName\":\"Britta\",\"familyName\":\"Dreyer\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"ar\",\"types\":{\"resourceType\":\"Satellite Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://tib.eu\",\"schemeType\":\"iosfudsfj\",\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.1029/PA004i004p00413\",\"resourceTypeGeneral\":\"Image\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":\"Dublin Core\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Cites\",\"relatedIdentifier\":\"asdadsads\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"EISSN\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"aesfdjäadspujgäapsjgear#jgdfaÖXMCv\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Barcelona\"},{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://tib.eu\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T16:18:09.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-03-27T10:23:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-25T05:46:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":16,\"totalPages\":1,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":10},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":16}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":16}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":11},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":5}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":2}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":14},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":2}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"1\",\"title\":\"1\",\"count\":2},{\"id\":\"0\",\"title\":\"0\",\"count\":1}],\"linkChecksSchemaOrgId\":2,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Computer and information sciences\",\"title\":\"Computer And Information Sciences\",\"count\":2},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":2},{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":1},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":1},{\"id\":\"Italy, Southern\",\"title\":\"Italy, Southern\",\"count\":1},{\"id\":\"Pasolini, Pier Paolo\",\"title\":\"Pasolini, Pier Paolo\",\"count\":1},{\"id\":\"Sociology\",\"title\":\"Sociology\",\"count\":1},{\"id\":\"climate\",\"title\":\"Climate\",\"count\":1},{\"id\":\"colonialism\",\"title\":\"Colonialism\",\"count\":1},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":1},{\"id\":\"instrument\",\"title\":\"Instrument\",\"count\":1},{\"id\":\"marine and coastal\",\"title\":\"Marine And Coastal\",\"count\":1},{\"id\":\"panafricanism\",\"title\":\"Panafricanism\",\"count\":1},{\"id\":\"population\",\"title\":\"Population\",\"count\":1},{\"id\":\"rda\",\"title\":\"Rda\",\"count\":1}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\"}}" + "size": 35969, + "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-04T10:02:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T09:02:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T06:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-05-04T03:32:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:15:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/pxjp-zj03\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/pxjp-zj03\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T19:30:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T19:30:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/hkb1-1873\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/hkb1-1873\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:11:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:11:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/p5x0-hn11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/p5x0-hn11\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:25.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-23T17:00:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/en98-jk22\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/en98-jk22\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:00:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3s9v-et79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3s9v-et79\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:17.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:00:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/4xew-qr39\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/4xew-qr39\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:55.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/tp3g-3826\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/tp3g-3826\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:52.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/5458-r994\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/5458-r994\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.70048/rph240519\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:45.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/krdh-8t83\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/krdh-8t83\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[\"5kb\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:43.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3gw4-cx35\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3gw4-cx35\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"json\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:40.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/1ksw-nw05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/1ksw-nw05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:37.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/6ezk-qd14\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6ezk-qd14\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:33.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jvth-x727\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jvth-x727\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:29.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/18tf-4f57\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/18tf-4f57\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T08:19:42.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T08:19:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":31,\"totalPages\":2,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":25},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":5},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":31}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":31}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":31}],\"affiliations\":[{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":24},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":7}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":10}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":6}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.test&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -202,8 +202,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:03.273Z", - "time": 244, + "startedDateTime": "2020-05-04T16:39:37.978Z", + "time": 246, "timings": { "blocked": -1, "connect": -1, @@ -211,7 +211,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 244 + "wait": 246 } }, { @@ -238,11 +238,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -261,8 +261,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:04.768Z", - "time": 303, + "startedDateTime": "2020-05-04T16:39:39.615Z", + "time": 254, "timings": { "blocked": -1, "connect": -1, @@ -270,7 +270,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 303 + "wait": 254 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-dois_3205762602/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-dois_3205762602/recording.har index f2bd7e99a..7f4ae6fd8 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-dois_3205762602/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-dois_3205762602/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting repository DataCite Test dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:07.214Z", - "time": 96, + "startedDateTime": "2020-05-04T16:39:41.878Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 105 } }, { @@ -179,11 +179,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 34562, + "bodySize": 35969, "content": { "mimeType": "application/json; charset=utf-8", - "size": 34562, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T04:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fqse-wb15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fqse-wb15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/fqse-wb15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Trento, Giovanna\",\"nameType\":\"Personal\",\"givenName\":\"Giovanna\",\"familyName\":\"Trento\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Pier Paolo Pasolini and Pan-Meridional Italianness\"}],\"publisher\":\"Turia + Kant\",\"container\":{\"type\":\"Series\",\"title\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities\",\"volume\":\"Geographies\",\"lastPage\":\"83\",\"firstPage\":\"59\",\"identifier\":\"https://doi.org/10.25620/ci-06\",\"identifierType\":\"DOI\"},\"publicationYear\":2012,\"subjects\":[{\"subject\":\"Pasolini, Pier Paolo\"},{\"subject\":\"Italy, Southern\"},{\"subject\":\"panafricanism\"},{\"subject\":\"colonialism\"}],\"contributors\":[{\"name\":\"Di Blasi, Luca\",\"nameType\":\"Personal\",\"givenName\":\"Luca\",\"familyName\":\"Di Blasi\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6755-6570\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Gragnolati, Manuele\",\"nameType\":\"Personal\",\"givenName\":\"Manuele\",\"familyName\":\"Gragnolati\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8178-3443\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Holzhey, Christoph F. E.\",\"nameType\":\"Personal\",\"givenName\":\"Christoph F. E.\",\"familyName\":\"Holzhey\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1312-1878\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"inbook\",\"citeproc\":\"chapter\",\"schemaOrg\":\"Chapter\",\"resourceType\":\"Book_chapter\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-06\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"https://www.ici-berlin.org/oa/ci-06/index.html\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-85132-681-9\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-728X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-731X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-print\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-online\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"© by the author(s)\"},{\"rights\":\"This version is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"description\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities, Geographies, 59-83\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T08:18:22.000Z\",\"registered\":null,\"published\":\"2012\",\"updated\":\"2020-04-18T08:18:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-15T12:39:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/6pkt-sx79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6pkt-sx79\",\"identifiers\":[{\"identifier\":\"dssda\",\"identifierType\":\"ARK\"}],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[{\"name\":\"dsfdfs, fd\",\"nameType\":\"Personal\",\"givenName\":\"fd\",\"familyName\":\"dsfdfs\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[{\"date\":\"2009\",\"dateType\":\"Withdrawn\",\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Documents\",\"relatedIdentifier\":\"dfds\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"ISTC\",\"relatedMetadataScheme\":null}],\"sizes\":[\"32\"],\"formats\":[\"23\"],\"version\":null,\"rightsList\":[{\"rights\":\"Amazon Digital Services License\",\"rightsUri\":\"http://spdx.org/licenses/ADSL.json\"}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":21,\"northBoundLatitude\":12,\"southBoundLatitude\":44,\"westBoundLongitude\":21},\"geoLocationPlace\":\"sdffsd\",\"geoLocationPoint\":{\"pointLatitude\":21,\"pointLongitude\":12}}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Università degli Studi di Cassino e del Lazio Meridionale\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/501100012699\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T11:07:21.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-07T11:08:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/ytzz-wq10\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/ytzz-wq10\",\"identifiers\":[],\"creators\":[{\"name\":\"Buys, Matthew\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"},{\"name\":\"ORCID\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04fa4r544\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Matthew Buys\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test title - new form\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sociology\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en\",\"description\":\"Test description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":null,\"northBoundLatitude\":null,\"southBoundLatitude\":null,\"westBoundLongitude\":null},\"geoLocationPlace\":\"Amsterdam\",\"geoLocationPoint\":{\"pointLatitude\":null,\"pointLongitude\":null}}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T07:20:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-07T07:20:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-06T16:42:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7m2v-5757\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7m2v-5757\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/7m2v-5757\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Center For International Earth Science Information Network-CIESIN-Columbia University\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Low Elevation Coastal Zone (LECZ) Urban-Rural Population and Land Area Estimates, Version 3\"},{\"title\":\"Urban-Rural Population and Land Area Estimates, Version 3 (1990, 2000, 2015)\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC)\",\"container\":{},\"publicationYear\":2013,\"subjects\":[{\"subject\":\"climate\"},{\"subject\":\"marine and coastal\"},{\"subject\":\"population\"},{\"subject\":\"sustainability\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"tabular; map; map service\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPreviousVersionOf\",\"relatedIdentifier\":\"10.7927/yyyyy3\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T12:48:27.000Z\",\"registered\":null,\"published\":\"2013\",\"updated\":\"2020-04-06T12:49:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-04-06T07:59:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/yh3e-rp55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/yh3e-rp55\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":null,\"nameIdentifiers\":[]}],\"dates\":[{\"date\":null,\"dateType\":null,\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":null,\"awardNumber\":null,\"funderIdentifier\":null,\"funderIdentifierType\":\"Other\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-04T06:46:13.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-04T06:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/n77d-nz44\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/n77d-nz44\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[\"444\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T09:31:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-30T09:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/kvth-tj94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/kvth-tj94\",\"identifiers\":[{\"identifier\":\"1288-90\",\"identifierType\":\"Pubmed\"}],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6628-8225\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is a new dataset\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Biochemistry\",\"valueUri\":\"jhggff\",\"schemeUri\":\"\",\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Dreyer, Britta\",\"nameType\":\"Personal\",\"givenName\":\"Britta\",\"familyName\":\"Dreyer\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"ar\",\"types\":{\"resourceType\":\"Satellite Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://tib.eu\",\"schemeType\":\"iosfudsfj\",\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.1029/PA004i004p00413\",\"resourceTypeGeneral\":\"Image\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":\"Dublin Core\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Cites\",\"relatedIdentifier\":\"asdadsads\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"EISSN\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"aesfdjäadspujgäapsjgear#jgdfaÖXMCv\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Barcelona\"},{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://tib.eu\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T16:18:09.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-03-27T10:23:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-25T05:46:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":16,\"totalPages\":1,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":10},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":16}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":16}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":11},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":5}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":2}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":14},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":2}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"1\",\"title\":\"1\",\"count\":2},{\"id\":\"0\",\"title\":\"0\",\"count\":1}],\"linkChecksSchemaOrgId\":2,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Computer and information sciences\",\"title\":\"Computer And Information Sciences\",\"count\":2},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":2},{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":1},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":1},{\"id\":\"Italy, Southern\",\"title\":\"Italy, Southern\",\"count\":1},{\"id\":\"Pasolini, Pier Paolo\",\"title\":\"Pasolini, Pier Paolo\",\"count\":1},{\"id\":\"Sociology\",\"title\":\"Sociology\",\"count\":1},{\"id\":\"climate\",\"title\":\"Climate\",\"count\":1},{\"id\":\"colonialism\",\"title\":\"Colonialism\",\"count\":1},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":1},{\"id\":\"instrument\",\"title\":\"Instrument\",\"count\":1},{\"id\":\"marine and coastal\",\"title\":\"Marine And Coastal\",\"count\":1},{\"id\":\"panafricanism\",\"title\":\"Panafricanism\",\"count\":1},{\"id\":\"population\",\"title\":\"Population\",\"count\":1},{\"id\":\"rda\",\"title\":\"Rda\",\"count\":1}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\"}}" + "size": 35969, + "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-04T10:02:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T09:02:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T06:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-05-04T03:32:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:15:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/pxjp-zj03\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/pxjp-zj03\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T19:30:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T19:30:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/hkb1-1873\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/hkb1-1873\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:11:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:11:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/p5x0-hn11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/p5x0-hn11\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:25.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-23T17:00:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/en98-jk22\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/en98-jk22\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:00:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3s9v-et79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3s9v-et79\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:17.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:00:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/4xew-qr39\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/4xew-qr39\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:55.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/tp3g-3826\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/tp3g-3826\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:52.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/5458-r994\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/5458-r994\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.70048/rph240519\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:45.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/krdh-8t83\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/krdh-8t83\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[\"5kb\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:43.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3gw4-cx35\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3gw4-cx35\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"json\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:40.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/1ksw-nw05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/1ksw-nw05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:37.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/6ezk-qd14\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6ezk-qd14\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:33.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jvth-x727\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jvth-x727\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:29.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/18tf-4f57\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/18tf-4f57\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T08:19:42.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T08:19:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":31,\"totalPages\":2,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":25},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":5},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":31}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":31}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":31}],\"affiliations\":[{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":24},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":7}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":10}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":6}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.test&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -202,8 +202,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:07.336Z", - "time": 203, + "startedDateTime": "2020-05-04T16:39:42.032Z", + "time": 170, "timings": { "blocked": -1, "connect": -1, @@ -211,7 +211,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 203 + "wait": 170 } }, { @@ -238,11 +238,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -261,8 +261,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:08.828Z", - "time": 159, + "startedDateTime": "2020-05-04T16:39:43.395Z", + "time": 158, "timings": { "blocked": -1, "connect": -1, @@ -270,7 +270,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 159 + "wait": 158 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-info_3093299103/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-info_3093299103/recording.har index 17eda6f3a..717367e2f 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-info_3093299103/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-info_3093299103/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting repository DataCite Test info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:05.266Z", - "time": 94, + "startedDateTime": "2020-05-04T16:39:40.143Z", + "time": 157, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 157 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:05.518Z", - "time": 121, + "startedDateTime": "2020-05-04T16:39:40.580Z", + "time": 112, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 112 } }, { @@ -163,11 +163,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:05.519Z", - "time": 108, + "startedDateTime": "2020-05-04T16:39:40.581Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 100 } }, { @@ -226,7 +226,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 321, - "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" + "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":31}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":5},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:05.519Z", - "time": 761, + "startedDateTime": "2020-05-04T16:39:40.581Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 761 + "wait": 150 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har index df7509112..bcf4af7bc 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting repository DataCite Test prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:06.380Z", - "time": 97, + "startedDateTime": "2020-05-04T16:39:41.033Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 104 } }, { @@ -131,11 +131,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=" }, "response": { - "bodySize": 1473, + "bodySize": 1360, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1473, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" + "size": 1360, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" }, "cookies": [], "headers": [ @@ -154,8 +154,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:06.488Z", - "time": 145, + "startedDateTime": "2020-05-04T16:39:41.168Z", + "time": 127, "timings": { "blocked": -1, "connect": -1, @@ -163,7 +163,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 145 + "wait": 127 } }, { @@ -194,7 +194,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 704, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -213,8 +213,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:06.488Z", - "time": 468, + "startedDateTime": "2020-05-04T16:39:41.168Z", + "time": 129, "timings": { "blocked": -1, "connect": -1, @@ -222,7 +222,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 468 + "wait": 129 } }, { @@ -249,11 +249,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -272,8 +272,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:06.762Z", - "time": 290, + "startedDateTime": "2020-05-04T16:39:41.517Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -281,11 +281,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 290 + "wait": 105 } }, { - "_id": "9c69df4d8d2a08d32bcaaa32d3811630", + "_id": "4d1cf57852130a759c653ec28a941a86", "_order": 0, "cache": {}, "request": { @@ -301,18 +301,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 778, + "headersSize": 777, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80225" + "url": "https://api.test.datacite.org/prefixes/10.0330" }, "response": { - "bodySize": 459, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -331,8 +331,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:06.762Z", - "time": 307, + "startedDateTime": "2020-05-04T16:39:41.517Z", + "time": 145, "timings": { "blocked": -1, "connect": -1, @@ -340,11 +340,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 307 + "wait": 145 } }, { - "_id": "4d1cf57852130a759c653ec28a941a86", + "_id": "9c69df4d8d2a08d32bcaaa32d3811630", "_order": 0, "cache": {}, "request": { @@ -360,18 +360,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 777, + "headersSize": 778, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" + "url": "https://api.test.datacite.org/prefixes/10.80225" }, "response": { - "bodySize": 457, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -390,8 +390,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:06.762Z", - "time": 313, + "startedDateTime": "2020-05-04T16:39:41.517Z", + "time": 161, "timings": { "blocked": -1, "connect": -1, @@ -399,7 +399,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 313 + "wait": 161 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-specific-doi_4109340652/recording.har index a8e2edcfc..e89d48288 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-specific-doi_4109340652/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting specific doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8625, + "bodySize": 8685, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8625, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8685, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:09.158Z", - "time": 187, + "startedDateTime": "2020-05-04T16:39:43.739Z", + "time": 173, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 187 + "wait": 173 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5309, + "bodySize": 5349, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5309, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5349, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:09.492Z", - "time": 132, + "startedDateTime": "2020-05-04T16:39:44.109Z", + "time": 174, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 132 + "wait": 174 } }, { @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:09.492Z", - "time": 182, + "startedDateTime": "2020-05-04T16:39:44.109Z", + "time": 224, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 224 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:09.632Z", - "time": 74, + "startedDateTime": "2020-05-04T16:39:44.292Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 74 + "wait": 111 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-Alternate-Identfier_2433792489/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-Alternate-Identfier_2433792489/recording.har deleted file mode 100644 index 51c8e4dc8..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-Alternate-Identfier_2433792489/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding Alternate Identfier", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:27.969Z", - "time": 99, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 99 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:28.685Z", - "time": 134, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 134 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:28.685Z", - "time": 160, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 160 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/ta1p-c359\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:28.873Z", - "time": 70, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 70 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:28.873Z", - "time": 93, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 93 - } - }, - { - "_id": "d16e13f0bba66cc180a289138320bad3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/ta1p-c359" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fta1p-c359" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fta1p-c359\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:28.955Z", - "time": 113, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 113 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-format-version-and-size_455109108/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-format-version-and-size_455109108/recording.har deleted file mode 100644 index 3af04a362..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-format-version-and-size_455109108/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding format, version and size", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:26.555Z", - "time": 179, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 179 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:27.372Z", - "time": 134, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 134 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:27.372Z", - "time": 240, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 240 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/fd6d-yz49\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:27.630Z", - "time": 81, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 81 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:27.630Z", - "time": 93, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 93 - } - }, - { - "_id": "3e9c3994e82f722ca85c81345bde4e52", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/fd6d-yz49" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ffd6d-yz49" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ffd6d-yz49\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:27.739Z", - "time": 115, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 115 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-references_341417744/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-references_341417744/recording.har deleted file mode 100644 index 54708729e..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-funding-references_341417744/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding funding references", - "browser": { - "name": "Chrome", - "version": "80.0.3987.163" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:46:24.052Z", - "time": 191, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 191 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:46:24.879Z", - "time": 139, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 139 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:46:24.879Z", - "time": 244, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 244 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/dyww-gq51\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:46:25.157Z", - "time": 73, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 73 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:46:25.157Z", - "time": 106, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 106 - } - }, - { - "_id": "7332b520c2eed0378baf66caded465a1", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/dyww-gq51" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fdyww-gq51" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fdyww-gq51\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T10:46:25.256Z", - "time": 129, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 129 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-related-Identifier_1709869259/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-related-Identifier_1709869259/recording.har deleted file mode 100644 index b4269e951..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-related-Identifier_1709869259/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding related Identifier", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:31.246Z", - "time": 93, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 93 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:31.791Z", - "time": 126, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 126 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:31.791Z", - "time": 153, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 153 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/h3hz-hg85\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:31.960Z", - "time": 72, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 72 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:31.960Z", - "time": 95, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 95 - } - }, - { - "_id": "a07fee49e914e50826b2a5931f36aa59", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/h3hz-hg85" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fh3hz-hg85" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fh3hz-hg85\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:32.047Z", - "time": 138, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 138 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-rights_3825392370/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-rights_3825392370/recording.har deleted file mode 100644 index b1abe03d4..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-Form-and-adding-rights_3825392370/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the Form and adding rights", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:33.727Z", - "time": 116, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 116 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:34.406Z", - "time": 136, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 136 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:34.406Z", - "time": 189, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 189 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/qgyc-mv48\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:34.615Z", - "time": 63, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 63 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:34.615Z", - "time": 155, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 155 - } - }, - { - "_id": "d7eff9237b3993add203bddc40f0a97f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/qgyc-mv48" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fqgyc-mv48" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fqgyc-mv48\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:34.724Z", - "time": 175, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 175 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-alternate-identfier_2444407433/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-alternate-identfier_2444407433/recording.har index cec973350..fc716d849 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-alternate-identfier_2444407433/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-alternate-identfier_2444407433/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding alternate identfier", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":43,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:08.547Z", - "time": 101, + "startedDateTime": "2020-05-04T16:40:24.004Z", + "time": 130, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 130 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:09.077Z", - "time": 173, + "startedDateTime": "2020-05-04T16:40:25.020Z", + "time": 266, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 173 + "wait": 266 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:09.077Z", - "time": 188, + "startedDateTime": "2020-05-04T16:40:25.020Z", + "time": 269, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 188 + "wait": 269 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/5458-r994\"]}" + "text": "{\"dois\":[\"10.0330/8cpk-ka66\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:09.287Z", - "time": 107, + "startedDateTime": "2020-05-04T16:40:25.333Z", + "time": 110, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 110 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:09.287Z", - "time": 146, + "startedDateTime": "2020-05-04T16:40:25.333Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 116 } }, { - "_id": "723448e2232ac5f4930263c8262a94c6", + "_id": "b2b0c4b4e97932f10cf9c318a5e84b4d", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/5458-r994" + "value": "model.prefix/8cpk-ka66" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F5458-r994" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8cpk-ka66" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F5458-r994\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8cpk-ka66\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:09.419Z", - "time": 113, + "startedDateTime": "2020-05-04T16:40:25.569Z", + "time": 360, "timings": { "blocked": -1, "connect": -1, @@ -388,43 +388,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 360 } }, { - "_id": "723448e2232ac5f4930263c8262a94c6", - "_order": 1, + "_id": "0b75c5257bcbfa65835da8dd6e8cb72a", + "_order": 0, "cache": {}, "request": { - "bodySize": 0, + "bodySize": 656, "cookies": [], "headers": [ { - "name": "accept", - "value": "application/vnd.api+json" + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" }, { - "name": "content-type", - "value": "text/plain;charset=utf-8" + "name": "accept", + "value": "application/vnd.api+json" } ], - "headersSize": 793, + "headersSize": 780, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/5458-r994" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F5458-r994" + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 136, + "bodySize": 1979, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F5458-r994\"}}" + "size": 1979, + "text": "{\"data\":{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"prefix\":\"10.0330\",\"suffix\":\"8cpk-ka66\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC84Q1BLLUtBNjY8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -440,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 201, + "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:45.622Z", - "time": 103, + "startedDateTime": "2020-05-04T16:40:26.582Z", + "time": 235, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 235 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "b2b0c4b4e97932f10cf9c318a5e84b4d", "_order": 1, "cache": {}, "request": { @@ -472,33 +472,23 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" + "name": "id", + "value": "model.prefix/8cpk-ka66" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8cpk-ka66" }, "response": { - "bodySize": 1416, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8cpk-ka66\"}}" }, "cookies": [], "headers": [ @@ -517,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:45.622Z", - "time": 108, + "startedDateTime": "2020-05-04T16:40:26.584Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -526,43 +516,53 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 102 } }, { - "_id": "ab53b01e07c5047b41c8195f6bc5543d", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, "cache": {}, "request": { - "bodySize": 721, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 836, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/5458-r994\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[{\"identifier\":\"https://doi.org/10.70048/rph240519\",\"identifierType\":\"DOI\"}],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1995, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1995, - "text": "{\"data\":{\"id\":\"10.0330/5458-r994\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/5458-r994\",\"prefix\":\"10.0330\",\"suffix\":\"5458-r994\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.70048/rph240519\",\"identifierType\":\"DOI\"}],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC81NDU4LVI5OTQ8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:45.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/5458-r994\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -578,11 +578,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:45.622Z", - "time": 180, + "startedDateTime": "2020-05-04T16:40:26.584Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 180 + "wait": 133 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-contributor_847131258/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-contributor_847131258/recording.har index f2646165c..4199fc3d7 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-contributor_847131258/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-contributor_847131258/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding contributor", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":39,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:01:14.859Z", - "time": 943, + "startedDateTime": "2020-05-04T16:40:13.628Z", + "time": 119, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 943 + "wait": 119 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:01:16.269Z", - "time": 173, + "startedDateTime": "2020-05-04T16:40:14.314Z", + "time": 148, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 173 + "wait": 148 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:01:16.269Z", - "time": 228, + "startedDateTime": "2020-05-04T16:40:14.314Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 228 + "wait": 160 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/1ksw-nw05\"]}" + "text": "{\"dois\":[\"10.0330/8wrw-2m30\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:01:16.520Z", - "time": 115, + "startedDateTime": "2020-05-04T16:40:15.021Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 115 + "wait": 84 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:01:16.520Z", - "time": 146, + "startedDateTime": "2020-05-04T16:40:15.021Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 109 } }, { - "_id": "89cdaeed53b694ad18c561be280d5c38", + "_id": "d90c2158b94ff5a3538e6dc4a2f5b956", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/1ksw-nw05" + "value": "model.prefix/8wrw-2m30" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F1ksw-nw05" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8wrw-2m30" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F1ksw-nw05\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8wrw-2m30\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:01:16.661Z", - "time": 138, + "startedDateTime": "2020-05-04T16:40:15.127Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -388,15 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 126 } }, { - "_id": "2d694777d4da98371f38b6e4920011c5", + "_id": "5e0d844e58e140b63881ffc0ef72f72b", "_order": 0, "cache": {}, "request": { - "bodySize": 945, + "bodySize": 954, "cookies": [], "headers": [ { @@ -414,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/1ksw-nw05\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"contributorType\":\"DataCollector\",\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[{\"nameIdentifier\":null,\"nameIdentifierScheme\":null,\"schemeUri\":null}],\"affiliation\":[{\"name\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null,\"schemeUri\":null}]}],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"contributorType\":\"DataCollector\",\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[{\"nameIdentifier\":null,\"nameIdentifierScheme\":null,\"schemeUri\":null}],\"affiliation\":[{\"name\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null,\"schemeUri\":null}]}],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 2405, + "bodySize": 2463, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2405, - "text": "{\"data\":{\"id\":\"10.0330/1ksw-nw05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/1ksw-nw05\",\"prefix\":\"10.0330\",\"suffix\":\"1ksw-nw05\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"nameType\":null,\"nameIdentifiers\":[{\"nameIdentifier\":null,\"nameIdentifierScheme\":null,\"schemeUri\":null}],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"DataCollector\"}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8xS1NXLU5XMDU8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iRGF0YUNvbGxlY3RvciI+CiAgICAgIDxjb250cmlidXRvck5hbWUvPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9IiIgc2NoZW1lVVJJPSIiLz4KICAgICAgPGFmZmlsaWF0aW9uLz4KICAgIDwvY29udHJpYnV0b3I+CiAgPC9jb250cmlidXRvcnM+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:37.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/1ksw-nw05\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2463, + "text": "{\"data\":{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"prefix\":\"10.0330\",\"suffix\":\"8wrw-2m30\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"nameType\":null,\"nameIdentifiers\":[{\"nameIdentifier\":null,\"nameIdentifierScheme\":null,\"schemeUri\":null}],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"DataCollector\"}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC84V1JXLTJNMzA8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8Y29udHJpYnV0b3JzPgogICAgPGNvbnRyaWJ1dG9yIGNvbnRyaWJ1dG9yVHlwZT0iRGF0YUNvbGxlY3RvciI+CiAgICAgIDxjb250cmlidXRvck5hbWUvPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9IiIgc2NoZW1lVVJJPSIiLz4KICAgICAgPGFmZmlsaWF0aW9uLz4KICAgIDwvY29udHJpYnV0b3I+CiAgPC9jb250cmlidXRvcnM+CiAgPHNpemVzLz4KICA8Zm9ybWF0cy8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -443,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:37.145Z", - "time": 171, + "startedDateTime": "2020-05-04T16:40:15.561Z", + "time": 273, "timings": { "blocked": -1, "connect": -1, @@ -452,7 +452,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 171 + "wait": 273 } }, { @@ -494,11 +494,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -517,8 +517,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:37.146Z", - "time": 114, + "startedDateTime": "2020-05-04T16:40:15.581Z", + "time": 174, "timings": { "blocked": -1, "connect": -1, @@ -526,11 +526,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 174 } }, { - "_id": "89cdaeed53b694ad18c561be280d5c38", + "_id": "d90c2158b94ff5a3538e6dc4a2f5b956", "_order": 1, "cache": {}, "request": { @@ -552,17 +552,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/1ksw-nw05" + "value": "model.prefix/8wrw-2m30" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F1ksw-nw05" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8wrw-2m30" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F1ksw-nw05\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8wrw-2m30\"}}" }, "cookies": [], "headers": [ @@ -581,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:37.146Z", - "time": 712, + "startedDateTime": "2020-05-04T16:40:15.581Z", + "time": 227, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 712 + "wait": 227 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-creator_4964903/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-creator_4964903/recording.har index c7fe976d9..4fdf1b58e 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-creator_4964903/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-creator_4964903/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding creator", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite201\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T11:35:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":25,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:15.215Z", - "time": 114, + "startedDateTime": "2020-05-04T16:39:47.609Z", + "time": 181, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 181 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T11:35:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:16.756Z", - "time": 163, + "startedDateTime": "2020-05-04T16:39:49.259Z", + "time": 294, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 294 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:16.756Z", - "time": 214, + "startedDateTime": "2020-05-04T16:39:49.259Z", + "time": 313, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 214 + "wait": 313 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/3s9v-et79\"]}" + "text": "{\"dois\":[\"10.0330/01bd-5804\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:17.031Z", - "time": 120, + "startedDateTime": "2020-05-04T16:39:49.620Z", + "time": 190, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 120 + "wait": 190 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:17.031Z", - "time": 180, + "startedDateTime": "2020-05-04T16:39:49.620Z", + "time": 261, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 180 + "wait": 261 } }, { - "_id": "ea9717ea27ad1917ef956b365fcce920", + "_id": "03f628c84c787cc9ec0e6b644dc7c233", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/3s9v-et79" + "value": "model.prefix/01bd-5804" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F3s9v-et79" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F01bd-5804" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F3s9v-et79\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F01bd-5804\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:17.174Z", - "time": 182, + "startedDateTime": "2020-05-04T16:39:49.857Z", + "time": 119, "timings": { "blocked": -1, "connect": -1, @@ -388,15 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 119 } }, { - "_id": "31b6dbf1706fc6e4d4a524c95febae86", + "_id": "44109b3153f2d6999718cf2a5e2e658a", "_order": 0, "cache": {}, "request": { - "bodySize": 662, + "bodySize": 671, "cookies": [], "headers": [ { @@ -414,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/3s9v-et79\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":\"Miller, Elizabeth\",\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":\"Miller, Elizabeth\",\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 1976, + "bodySize": 2034, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1976, - "text": "{\"data\":{\"id\":\"10.0330/3s9v-et79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3s9v-et79\",\"prefix\":\"10.0330\",\"suffix\":\"3s9v-et79\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":\"Miller, Elizabeth\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zUzlWLUVUNzk8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5NaWxsZXIsIEVsaXphYmV0aDwvY3JlYXRvck5hbWU+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:17.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:00:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3s9v-et79\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2034, + "text": "{\"data\":{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"prefix\":\"10.0330\",\"suffix\":\"01bd-5804\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":\"Miller, Elizabeth\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8wMUJELTU4MDQ8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZT5NaWxsZXIsIEVsaXphYmV0aDwvY3JlYXRvck5hbWU+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/01bd-5804\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -443,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T17:00:17.703Z", - "time": 317, + "startedDateTime": "2020-05-04T16:39:50.443Z", + "time": 314, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 317 + "wait": 314 } }, { - "_id": "ea9717ea27ad1917ef956b365fcce920", + "_id": "03f628c84c787cc9ec0e6b644dc7c233", "_order": 1, "cache": {}, "request": { @@ -478,17 +478,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/3s9v-et79" + "value": "model.prefix/01bd-5804" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F3s9v-et79" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F01bd-5804" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F3s9v-et79\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F01bd-5804\"}}" }, "cookies": [], "headers": [ @@ -507,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:17.705Z", - "time": 94, + "startedDateTime": "2020-05-04T16:39:50.445Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -516,7 +516,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 120 } }, { @@ -558,85 +558,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T17:00:17.705Z", - "time": 147, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 147 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 2, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -655,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-24T16:24:41.735Z", - "time": 429, + "startedDateTime": "2020-05-04T16:39:50.445Z", + "time": 125, "timings": { "blocked": -1, "connect": -1, @@ -664,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 429 + "wait": 125 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-_2666003018/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-_2666003018/recording.har deleted file mode 100644 index d149e00c1..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-_2666003018/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding format,", - "browser": { - "name": "Chrome", - "version": "80.0.3987.163" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:19:05.895Z", - "time": 108, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 108 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:19:06.394Z", - "time": 120, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 120 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:19:06.394Z", - "time": 148, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 148 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/qqae-pr81\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:19:06.601Z", - "time": 257, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 257 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:19:06.601Z", - "time": 298, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 298 - } - }, - { - "_id": "709714dbcc3694585967a80e25ded00a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/qqae-pr81" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fqqae-pr81" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fqqae-pr81\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:19:06.879Z", - "time": 122, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 122 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-version-and-size_1955588052/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-version-and-size_1955588052/recording.har deleted file mode 100644 index 6aea3d0b3..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format-version-and-size_1955588052/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding format, version and size", - "browser": { - "name": "Chrome", - "version": "80.0.3987.163" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 804, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 5956, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T08:34:07.523Z", - "time": 102, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 102 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T08:34:08.009Z", - "time": 123, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 123 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T08:34:08.009Z", - "time": 182, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 182 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 753, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/rsys-7182\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T08:34:08.214Z", - "time": 64, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 64 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 777, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T08:34:08.214Z", - "time": 101, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 101 - } - }, - { - "_id": "90fb71b094cef3da0c650d397866b37b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 793, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/rsys-7182" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Frsys-7182" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Frsys-7182\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T08:34:08.308Z", - "time": 125, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 125 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har index a1c220df8..d85f8b5d7 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding format", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":41,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:22:06.836Z", - "time": 107, + "startedDateTime": "2020-05-04T16:40:18.797Z", + "time": 144, "timings": { "blocked": -1, "connect": -1, @@ -72,66 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 773, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1680, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T09:22:07.317Z", - "time": 129, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 129 + "wait": 144 } }, { @@ -173,11 +114,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:22:07.317Z", - "time": 152, + "startedDateTime": "2020-05-04T16:40:19.596Z", + "time": 171, "timings": { "blocked": -1, "connect": -1, @@ -205,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 152 + "wait": 171 } }, { - "_id": "4d1cf57852130a759c653ec28a941a86", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -225,18 +166,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 777, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 457, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -255,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:22:07.510Z", - "time": 119, + "startedDateTime": "2020-05-04T16:40:19.596Z", + "time": 185, "timings": { "blocked": -1, "connect": -1, @@ -264,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 185 } }, { @@ -296,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/3gw4-cx35\"]}" + "text": "{\"dois\":[\"10.0330/20fp-vb66\"]}" }, "cookies": [], "headers": [ @@ -315,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:22:07.510Z", - "time": 127, + "startedDateTime": "2020-05-04T16:40:19.933Z", + "time": 83, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +265,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 83 } }, { - "_id": "2bea9610e23a96a4c35a20d23b5b84f1", + "_id": "4d1cf57852130a759c653ec28a941a86", "_order": 0, "cache": {}, "request": { @@ -344,23 +285,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 793, + "headersSize": 777, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/3gw4-cx35" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F3gw4-cx35" + "queryString": [], + "url": "https://api.test.datacite.org/prefixes/10.0330" }, "response": { - "bodySize": 136, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F3gw4-cx35\"}}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -379,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:22:07.658Z", - "time": 122, + "startedDateTime": "2020-05-04T16:40:19.933Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -388,12 +324,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 122 + "wait": 133 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_id": "76bdf5477d41fe062c5b941b0c9e53d5", + "_order": 0, "cache": {}, "request": { "bodySize": 0, @@ -408,33 +344,23 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" + "name": "id", + "value": "model.prefix/20fp-vb66" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66" }, "response": { - "bodySize": 1416, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66\"}}" }, "cookies": [], "headers": [ @@ -453,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:40.446Z", - "time": 299, + "startedDateTime": "2020-05-04T16:40:20.055Z", + "time": 112, "timings": { "blocked": -1, "connect": -1, @@ -462,15 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 299 + "wait": 112 } }, { - "_id": "6e6d380063266b0d453aac8d443ebccb", + "_id": "50ceb7b3433a8805f0d58ff0a0ec8bd3", "_order": 0, "cache": {}, "request": { - "bodySize": 653, + "bodySize": 656, "cookies": [], "headers": [ { @@ -488,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/3gw4-cx35\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"json\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 1927, + "bodySize": 1979, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1927, - "text": "{\"data\":{\"id\":\"10.0330/3gw4-cx35\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3gw4-cx35\",\"prefix\":\"10.0330\",\"suffix\":\"3gw4-cx35\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"json\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zR1c0LUNYMzU8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:40.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3gw4-cx35\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 1979, + "text": "{\"data\":{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"prefix\":\"10.0330\",\"suffix\":\"20fp-vb66\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8yMEZQLVZCNjY8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/20fp-vb66\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -517,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:40.722Z", - "time": 175, + "startedDateTime": "2020-05-04T16:40:20.495Z", + "time": 182, "timings": { "blocked": -1, "connect": -1, @@ -526,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 175 + "wait": 182 } }, { - "_id": "2bea9610e23a96a4c35a20d23b5b84f1", + "_id": "76bdf5477d41fe062c5b941b0c9e53d5", "_order": 1, "cache": {}, "request": { @@ -552,17 +478,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/3gw4-cx35" + "value": "model.prefix/20fp-vb66" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F3gw4-cx35" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F3gw4-cx35\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66\"}}" }, "cookies": [], "headers": [ @@ -581,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:40.723Z", - "time": 103, + "startedDateTime": "2020-05-04T16:40:20.498Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -590,12 +516,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 94 } }, { "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 2, + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -632,11 +558,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -655,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:40.723Z", - "time": 105, + "startedDateTime": "2020-05-04T16:40:20.498Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -664,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 108 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-geoLocationPlace_3330462944/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-geoLocationPlace_3330462944/recording.har index 6ddfc1434..162636e4a 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-geoLocationPlace_3330462944/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-geoLocationPlace_3330462944/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding geoLocationPlace", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":37,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:21.941Z", - "time": 93, + "startedDateTime": "2020-05-04T16:40:08.841Z", + "time": 144, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 144 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 773, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1680, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:22.719Z", - "time": 123, + "startedDateTime": "2020-05-04T16:40:09.829Z", + "time": 180, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 180 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -151,33 +166,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1416, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:22.719Z", - "time": 149, + "startedDateTime": "2020-05-04T16:40:09.829Z", + "time": 186, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 149 + "wait": 186 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/6ezk-qd14\"]}" + "text": "{\"dois\":[\"10.0330/10qh-3f05\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:22.906Z", - "time": 70, + "startedDateTime": "2020-05-04T16:40:10.036Z", + "time": 79, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 70 + "wait": 79 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:22.906Z", - "time": 76, + "startedDateTime": "2020-05-04T16:40:10.036Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 135 } }, { - "_id": "6cf887b9de98e737e300c2f098789db1", + "_id": "c0765787e4cba38170c9b611027ef7e7", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/6ezk-qd14" + "value": "model.prefix/10qh-3f05" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F6ezk-qd14" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F10qh-3f05" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F6ezk-qd14\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F10qh-3f05\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:23.015Z", - "time": 215, + "startedDateTime": "2020-05-04T16:40:10.152Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -388,53 +388,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 215 + "wait": 117 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_id": "4a10779fae1e0b72ba593338a35f5878", + "_order": 0, "cache": {}, "request": { - "bodySize": 0, + "bodySize": 705, "cookies": [], "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, { "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" + "value": "application/vnd.api+json;charset=utf-8" }, { - "name": "sort", - "value": "name" + "name": "accept", + "value": "application/vnd.api+json" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 1416, + "bodySize": 2216, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 2216, + "text": "{\"data\":{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"prefix\":\"10.0330\",\"suffix\":\"10qh-3f05\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8xMFFILTNGMDU8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CiAgPGdlb0xvY2F0aW9ucz4KICAgIDxnZW9Mb2NhdGlvbj4KICAgICAgPGdlb0xvY2F0aW9uUGxhY2U+QW1zdGVyZGFtLCBOb3ZvcmF2aXMgaG90ZWw8L2dlb0xvY2F0aW9uUGxhY2U+CiAgICA8L2dlb0xvY2F0aW9uPgogIDwvZ2VvTG9jYXRpb25zPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/10qh-3f05\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -450,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 201, + "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:32.666Z", - "time": 438, + "startedDateTime": "2020-05-04T16:40:10.631Z", + "time": 197, "timings": { "blocked": -1, "connect": -1, @@ -462,43 +452,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 438 + "wait": 197 } }, { - "_id": "81940dac0afee38437a31992f25a7df4", - "_order": 0, + "_id": "c0765787e4cba38170c9b611027ef7e7", + "_order": 1, "cache": {}, "request": { - "bodySize": 696, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 793, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/6ezk-qd14\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/10qh-3f05" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F10qh-3f05" }, "response": { - "bodySize": 2158, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2158, - "text": "{\"data\":{\"id\":\"10.0330/6ezk-qd14\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6ezk-qd14\",\"prefix\":\"10.0330\",\"suffix\":\"6ezk-qd14\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC82RVpLLVFEMTQ8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8dmVyc2lvbi8+CiAgPGdlb0xvY2F0aW9ucz4KICAgIDxnZW9Mb2NhdGlvbj4KICAgICAgPGdlb0xvY2F0aW9uUGxhY2U+QW1zdGVyZGFtLCBOb3ZvcmF2aXMgaG90ZWw8L2dlb0xvY2F0aW9uUGxhY2U+CiAgICA8L2dlb0xvY2F0aW9uPgogIDwvZ2VvTG9jYXRpb25zPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:33.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/6ezk-qd14\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F10qh-3f05\"}}" }, "cookies": [], "headers": [ @@ -514,11 +504,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:33.086Z", - "time": 220, + "startedDateTime": "2020-05-04T16:40:10.632Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -526,12 +516,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 220 + "wait": 150 } }, { "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 2, + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -568,11 +558,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -591,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:33.088Z", - "time": 121, + "startedDateTime": "2020-05-04T16:40:10.632Z", + "time": 192, "timings": { "blocked": -1, "connect": -1, @@ -600,12 +590,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 192 } }, { - "_id": "6cf887b9de98e737e300c2f098789db1", - "_order": 1, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 2, "cache": {}, "request": { "bodySize": 0, @@ -620,23 +610,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 793, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "id", - "value": "model.prefix/6ezk-qd14" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F6ezk-qd14" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 136, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F6ezk-qd14\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -655,8 +655,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:33.088Z", - "time": 209, + "startedDateTime": "2020-05-04T17:09:29.537Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -664,7 +664,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 209 + "wait": 146 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publication-year_1047346466/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publication-year_1047346466/recording.har index 17b9ebd5c..3a9d99633 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publication-year_1047346466/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publication-year_1047346466/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding publication year", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite201\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T11:35:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":27,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":33,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:23.377Z", - "time": 109, + "startedDateTime": "2020-05-04T16:39:57.062Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 109 + "wait": 100 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T11:35:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:24.781Z", - "time": 177, + "startedDateTime": "2020-05-04T16:39:58.064Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 177 + "wait": 131 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:24.781Z", - "time": 218, + "startedDateTime": "2020-05-04T16:39:58.064Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 218 + "wait": 139 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/p5x0-hn11\"]}" + "text": "{\"dois\":[\"10.0330/8490-9084\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:25.028Z", - "time": 71, + "startedDateTime": "2020-05-04T16:39:58.232Z", + "time": 74, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 71 + "wait": 74 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:25.028Z", - "time": 101, + "startedDateTime": "2020-05-04T16:39:58.232Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 100 } }, { - "_id": "45fd53e258be3fb31115dd10fa5f65c8", + "_id": "6dcf2a369c2053b960d286cfbc914e8e", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/p5x0-hn11" + "value": "model.prefix/8490-9084" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fp5x0-hn11" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8490-9084" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fp5x0-hn11\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8490-9084\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:25.114Z", - "time": 146, + "startedDateTime": "2020-05-04T16:39:58.328Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -388,7 +388,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 133 } }, { @@ -430,11 +430,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -453,8 +453,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:25.725Z", - "time": 182, + "startedDateTime": "2020-05-04T16:39:58.520Z", + "time": 356, "timings": { "blocked": -1, "connect": -1, @@ -462,39 +462,107 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 356 } }, { - "_id": "1f2ed9b690e18a122e621204614c336f", + "_id": "6c5961db924b1a544e2dd5b2c3504680", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 656, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" + }, + { + "name": "accept", + "value": "application/vnd.api+json" + } + ], + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" + }, + "response": { + "bodySize": 2011, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 2011, + "text": "{\"data\":{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"prefix\":\"10.0330\",\"suffix\":\"8490-9084\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC84NDkwLTkwODQ8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyPjIwMjA8L3B1YmxpY2F0aW9uWWVhcj4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/8490-9084\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 201, + "statusText": "Created" + }, + "startedDateTime": "2020-05-04T16:39:58.745Z", + "time": 263, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 263 + } + }, + { + "_id": "6dcf2a369c2053b960d286cfbc914e8e", "_order": 1, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 753, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "prefix", - "value": "10.0330" + "name": "id", + "value": "model.prefix/8490-9084" } ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8490-9084" }, "response": { - "bodySize": 30, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/cf7k-jj74\"]}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8490-9084\"}}" }, "cookies": [], "headers": [ @@ -513,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-24T15:55:10.702Z", - "time": 166, + "startedDateTime": "2020-05-04T16:39:58.746Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -522,12 +590,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 166 + "wait": 160 } }, { - "_id": "f589ca8b4f6a22a829db0fb81d108fbf", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 2, "cache": {}, "request": { "bodySize": 0, @@ -542,23 +610,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 793, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "id", - "value": "model.prefix/cf7k-jj74" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fcf7k-jj74" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 136, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fcf7k-jj74\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -577,8 +655,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-24T15:55:10.916Z", - "time": 159, + "startedDateTime": "2020-05-04T16:39:58.746Z", + "time": 254, "timings": { "blocked": -1, "connect": -1, @@ -586,7 +664,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 159 + "wait": 254 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publisher_2284752559/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publisher_2284752559/recording.har index d826467ef..5d1f797d2 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publisher_2284752559/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-publisher_2284752559/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding publisher", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite201\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T11:35:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":27,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":33,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:21.168Z", - "time": 132, + "startedDateTime": "2020-05-04T16:39:54.318Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 132 + "wait": 146 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 773, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1680, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T11:35:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:22.543Z", - "time": 163, + "startedDateTime": "2020-05-04T16:39:55.204Z", + "time": 186, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 186 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -151,33 +166,78 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" + }, + "response": { + "bodySize": 1713, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" + }, + "cookies": [], + "headers": [ { - "name": "page", - "value": { - "size": "25" - } + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" }, { - "name": "repository-id", - "value": "datacite.test" - }, + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T16:39:55.204Z", + "time": 258, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 258 + } + }, + { + "_id": "1f2ed9b690e18a122e621204614c336f", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ { - "name": "sort", - "value": "name" + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "headersSize": 753, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "prefix", + "value": "10.0330" + } + ], + "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" }, "response": { - "bodySize": 1416, + "bodySize": 30, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 30, + "text": "{\"dois\":[\"10.0330/7z2c-8d43\"]}" }, "cookies": [], "headers": [ @@ -196,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:22.543Z", - "time": 191, + "startedDateTime": "2020-05-04T16:39:55.440Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -205,12 +265,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 191 + "wait": 81 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_id": "4d1cf57852130a759c653ec28a941a86", + "_order": 0, "cache": {}, "request": { "bodySize": 0, @@ -225,33 +285,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 777, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "queryString": [], + "url": "https://api.test.datacite.org/prefixes/10.0330" }, "response": { - "bodySize": 1416, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -270,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:22.832Z", - "time": 290, + "startedDateTime": "2020-05-04T16:39:55.440Z", + "time": 119, "timings": { "blocked": -1, "connect": -1, @@ -279,39 +324,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 290 + "wait": 119 } }, { - "_id": "1f2ed9b690e18a122e621204614c336f", + "_id": "aafd67433d0535a80727bacee8e8f280", "_order": 0, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 753, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "prefix", - "value": "10.0330" + "name": "id", + "value": "model.prefix/7z2c-8d43" } ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F7z2c-8d43" }, "response": { - "bodySize": 30, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/hgqn-2w95\"]}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F7z2c-8d43\"}}" }, "cookies": [], "headers": [ @@ -330,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:22.864Z", - "time": 85, + "startedDateTime": "2020-05-04T16:39:55.539Z", + "time": 119, "timings": { "blocked": -1, "connect": -1, @@ -339,12 +388,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 119 } }, { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -359,18 +408,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 777, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 457, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -389,8 +453,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:22.864Z", - "time": 278, + "startedDateTime": "2020-05-04T16:39:55.740Z", + "time": 465, "timings": { "blocked": -1, "connect": -1, @@ -398,12 +462,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 278 + "wait": 465 } }, { - "_id": "20ba92592bd7d794d291cadd80cfba6c", - "_order": 0, + "_id": "aafd67433d0535a80727bacee8e8f280", + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -424,17 +488,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/hgqn-2w95" + "value": "model.prefix/7z2c-8d43" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fhgqn-2w95" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F7z2c-8d43" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fhgqn-2w95\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F7z2c-8d43\"}}" }, "cookies": [], "headers": [ @@ -453,8 +517,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:23.024Z", - "time": 207, + "startedDateTime": "2020-05-04T16:39:56.088Z", + "time": 145, "timings": { "blocked": -1, "connect": -1, @@ -462,39 +526,53 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 145 } }, { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 1, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 2, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 753, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "prefix", - "value": "10.0330" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 30, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/8g5r-wt70\"]}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -513,8 +591,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-24T15:55:08.827Z", - "time": 211, + "startedDateTime": "2020-05-04T16:39:56.088Z", + "time": 206, "timings": { "blocked": -1, "connect": -1, @@ -522,43 +600,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 211 + "wait": 206 } }, { - "_id": "b81949661932787a9c621bc60f523eea", + "_id": "243a056e9b998650d2234f1f94a40d70", "_order": 0, "cache": {}, "request": { - "bodySize": 0, + "bodySize": 662, "cookies": [], "headers": [ { - "name": "accept", - "value": "application/vnd.api+json" + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" }, { - "name": "content-type", - "value": "text/plain;charset=utf-8" + "name": "accept", + "value": "application/vnd.api+json" } ], - "headersSize": 793, + "headersSize": 780, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/8g5r-wt70" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F8g5r-wt70" + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 136, + "bodySize": 2009, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F8g5r-wt70\"}}" + "size": 2009, + "text": "{\"data\":{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"prefix\":\"10.0330\",\"suffix\":\"7z2c-8d43\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC83WjJDLThENDM8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHNpemVzLz4KICA8Zm9ybWF0cy8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -574,11 +652,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 201, + "statusText": "Created" }, - "startedDateTime": "2020-04-24T15:55:09.053Z", - "time": 104, + "startedDateTime": "2020-05-04T16:39:56.088Z", + "time": 353, "timings": { "blocked": -1, "connect": -1, @@ -586,7 +664,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 353 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-related-identifier_2083658827/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-related-identifier_2083658827/recording.har index f69446d17..c72060834 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-related-identifier_2083658827/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-related-identifier_2083658827/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding related identifier", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":44,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:09.636Z", - "time": 101, + "startedDateTime": "2020-05-04T16:40:32.609Z", + "time": 106, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 106 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:10.237Z", - "time": 123, + "startedDateTime": "2020-05-04T16:40:33.294Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 131 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,7 +196,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:10.237Z", + "startedDateTime": "2020-05-04T16:40:33.294Z", "time": 143, "timings": { "blocked": -1, @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/tp3g-3826\"]}" + "text": "{\"dois\":[\"10.0330/fhb1-ch81\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:10.561Z", - "time": 71, + "startedDateTime": "2020-05-04T16:40:33.665Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 71 + "wait": 117 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:10.561Z", - "time": 113, + "startedDateTime": "2020-05-04T16:40:33.665Z", + "time": 362, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 362 } }, { - "_id": "20d57a5d04a7e9f7fa6a5957a4594b5e", + "_id": "e5d7bb515727bfebaf0c0c7811a40ef0", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/tp3g-3826" + "value": "model.prefix/fhb1-ch81" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ftp3g-3826" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ffhb1-ch81" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ftp3g-3826\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ffhb1-ch81\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:34:10.658Z", - "time": 132, + "startedDateTime": "2020-05-04T16:40:34.011Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -388,43 +388,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 132 + "wait": 120 } }, { - "_id": "20d57a5d04a7e9f7fa6a5957a4594b5e", - "_order": 1, + "_id": "9f643e07fe744a462b7db59fdd2d3632", + "_order": 0, "cache": {}, "request": { - "bodySize": 0, + "bodySize": 849, "cookies": [], "headers": [ { - "name": "accept", - "value": "application/vnd.api+json" + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" }, { - "name": "content-type", - "value": "text/plain;charset=utf-8" + "name": "accept", + "value": "application/vnd.api+json" } ], - "headersSize": 793, + "headersSize": 780, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/tp3g-3826" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ftp3g-3826" + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[{\"relatedIdentifier\":\"10.70048/rph240519\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"References\",\"relatedMetadataScheme\":null,\"schemeUri\":null,\"schemeType\":null,\"resourceTypeGeneral\":\"Text\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 136, + "bodySize": 2424, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ftp3g-3826\"}}" + "size": 2424, + "text": "{\"data\":{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"prefix\":\"10.0330\",\"suffix\":\"fhb1-ch81\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"relatedIdentifier\":\"10.70048/rph240519\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"References\",\"relatedMetadataScheme\":null,\"schemeUri\":null,\"schemeType\":null,\"resourceTypeGeneral\":\"Text\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9GSEIxLUNIODE8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8cmVsYXRlZElkZW50aWZpZXJzPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9IlJlZmVyZW5jZXMiIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiPjEwLjcwMDQ4L3JwaDI0MDUxOTwvcmVsYXRlZElkZW50aWZpZXI+CiAgPC9yZWxhdGVkSWRlbnRpZmllcnM+CiAgPHNpemVzLz4KICA8Zm9ybWF0cy8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -440,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 201, + "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:52.713Z", - "time": 110, + "startedDateTime": "2020-05-04T16:40:34.821Z", + "time": 438, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 110 + "wait": 438 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "e5d7bb515727bfebaf0c0c7811a40ef0", "_order": 1, "cache": {}, "request": { @@ -472,33 +472,23 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" + "name": "id", + "value": "model.prefix/fhb1-ch81" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ffhb1-ch81" }, "response": { - "bodySize": 1416, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ffhb1-ch81\"}}" }, "cookies": [], "headers": [ @@ -517,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:52.713Z", - "time": 192, + "startedDateTime": "2020-05-04T16:40:34.822Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -526,43 +516,53 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 192 + "wait": 120 } }, { - "_id": "8f6cc2bacaf832732ad155a674100ce3", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, "cache": {}, "request": { - "bodySize": 840, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 836, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/tp3g-3826\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[{\"relatedIdentifier\":\"10.70048/rph240519\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"References\",\"relatedMetadataScheme\":null,\"schemeUri\":null,\"schemeType\":null,\"resourceTypeGeneral\":\"Text\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 2366, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2366, - "text": "{\"data\":{\"id\":\"10.0330/tp3g-3826\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/tp3g-3826\",\"prefix\":\"10.0330\",\"suffix\":\"tp3g-3826\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"relatedIdentifier\":\"10.70048/rph240519\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"References\",\"relatedMetadataScheme\":null,\"schemeUri\":null,\"schemeType\":null,\"resourceTypeGeneral\":\"Text\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9UUDNHLTM4MjY8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8cmVsYXRlZElkZW50aWZpZXJzPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9IlJlZmVyZW5jZXMiIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiPjEwLjcwMDQ4L3JwaDI0MDUxOTwvcmVsYXRlZElkZW50aWZpZXI+CiAgPC9yZWxhdGVkSWRlbnRpZmllcnM+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:52.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/tp3g-3826\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -578,11 +578,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:52.713Z", - "time": 202, + "startedDateTime": "2020-05-04T16:40:34.822Z", + "time": 129, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 202 + "wait": 129 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-resource-type-general_2212790731/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-resource-type-general_2212790731/recording.har index c5b74a776..4ebc0f71f 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-resource-type-general_2212790731/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-resource-type-general_2212790731/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding resource type general", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite201\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T11:35:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":27,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":35,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:26.657Z", - "time": 96, + "startedDateTime": "2020-05-04T16:39:59.647Z", + "time": 110, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 110 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T11:35:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:27.655Z", - "time": 200, + "startedDateTime": "2020-05-04T16:40:00.557Z", + "time": 217, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 200 + "wait": 217 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:27.655Z", - "time": 233, + "startedDateTime": "2020-05-04T16:40:00.557Z", + "time": 222, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 233 + "wait": 222 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/hkb1-1873\"]}" + "text": "{\"dois\":[\"10.0330/2jn3-tr97\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:28.169Z", - "time": 96, + "startedDateTime": "2020-05-04T16:40:00.995Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 115 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:28.169Z", - "time": 116, + "startedDateTime": "2020-05-04T16:40:00.995Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 116 + "wait": 118 } }, { - "_id": "7fcdd96f5c46e4d6bc6c644b3555ae84", + "_id": "5ec0a11153f454a6485fe0db87f0435f", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/hkb1-1873" + "value": "model.prefix/2jn3-tr97" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fhkb1-1873" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2jn3-tr97" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fhkb1-1873\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2jn3-tr97\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:28.283Z", - "time": 174, + "startedDateTime": "2020-05-04T16:40:01.128Z", + "time": 154, "timings": { "blocked": -1, "connect": -1, @@ -388,15 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 174 + "wait": 154 } }, { - "_id": "685c8b78c7089db974bb4099d3f2501b", + "_id": "4bbe1cc1364917e84a4459b00315b491", "_order": 0, "cache": {}, "request": { - "bodySize": 686, + "bodySize": 695, "cookies": [], "headers": [ { @@ -414,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/hkb1-1873\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 2009, + "bodySize": 2067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2009, - "text": "{\"data\":{\"id\":\"10.0330/hkb1-1873\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/hkb1-1873\",\"prefix\":\"10.0330\",\"suffix\":\"hkb1-1873\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9IS0IxLTE4NzM8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8cmVzb3VyY2VUeXBlIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:11:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:11:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/hkb1-1873\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2067, + "text": "{\"data\":{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"prefix\":\"10.0330\",\"suffix\":\"2jn3-tr97\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8ySk4zLVRSOTc8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8cmVzb3VyY2VUeXBlIHJlc291cmNlVHlwZUdlbmVyYWw9IlRleHQiLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -443,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T17:11:35.112Z", - "time": 353, + "startedDateTime": "2020-05-04T16:40:01.574Z", + "time": 265, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 353 + "wait": 265 } }, { - "_id": "7fcdd96f5c46e4d6bc6c644b3555ae84", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 1, "cache": {}, "request": { @@ -472,23 +472,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 793, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "id", - "value": "model.prefix/hkb1-1873" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fhkb1-1873" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 136, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fhkb1-1873\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -507,8 +517,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:11:35.113Z", - "time": 272, + "startedDateTime": "2020-05-04T16:40:01.577Z", + "time": 138, "timings": { "blocked": -1, "connect": -1, @@ -516,11 +526,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 272 + "wait": 138 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "5ec0a11153f454a6485fe0db87f0435f", "_order": 1, "cache": {}, "request": { @@ -536,33 +546,23 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" + "name": "id", + "value": "model.prefix/2jn3-tr97" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2jn3-tr97" }, "response": { - "bodySize": 1416, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2jn3-tr97\"}}" }, "cookies": [], "headers": [ @@ -581,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:11:35.113Z", - "time": 302, + "startedDateTime": "2020-05-04T16:40:01.577Z", + "time": 740, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 302 + "wait": 740 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-rights_3222538706/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-rights_3222538706/recording.har index e288c195b..b9711507d 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-rights_3222538706/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-rights_3222538706/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding rights", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":45,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:20:12.079Z", - "time": 140, + "startedDateTime": "2020-05-04T16:40:35.923Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 135 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:20:12.642Z", - "time": 139, + "startedDateTime": "2020-05-04T16:40:36.756Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 131 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:20:12.642Z", - "time": 164, + "startedDateTime": "2020-05-04T16:40:36.756Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 164 + "wait": 135 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/4xew-qr39\"]}" + "text": "{\"dois\":[\"10.0330/t6vm-0595\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:20:12.833Z", - "time": 216, + "startedDateTime": "2020-05-04T16:40:37.446Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 216 + "wait": 108 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:20:12.833Z", - "time": 220, + "startedDateTime": "2020-05-04T16:40:37.446Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 220 + "wait": 134 } }, { - "_id": "698571a71f91ca55792eaa3023f9d9f9", + "_id": "4d92b33fc79ec6986d8c51cff0575d00", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/4xew-qr39" + "value": "model.prefix/t6vm-0595" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F4xew-qr39" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ft6vm-0595" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F4xew-qr39\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ft6vm-0595\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T08:30:28.597Z", - "time": 96, + "startedDateTime": "2020-05-04T16:40:37.576Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -388,43 +388,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 134 } }, { - "_id": "698571a71f91ca55792eaa3023f9d9f9", - "_order": 1, + "_id": "18e1883c728df340b1653d2522dc9e30", + "_order": 0, "cache": {}, "request": { - "bodySize": 0, + "bodySize": 745, "cookies": [], "headers": [ { - "name": "accept", - "value": "application/vnd.api+json" + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" }, { - "name": "content-type", - "value": "text/plain;charset=utf-8" + "name": "accept", + "value": "application/vnd.api+json" } ], - "headersSize": 793, + "headersSize": 780, "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/4xew-qr39" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F4xew-qr39" + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 136, + "bodySize": 2236, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F4xew-qr39\"}}" + "size": 2236, + "text": "{\"data\":{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"prefix\":\"10.0330\",\"suffix\":\"t6vm-0595\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9UNlZNLTA1OTU8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL0FBLmpzb24iPkF0dHJpYnV0aW9uIEFzc3VyYW5jZSBMaWNlbnNlPC9yaWdodHM+CiAgPC9yaWdodHNMaXN0Pgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/t6vm-0595\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -440,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 201, + "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:55.947Z", - "time": 98, + "startedDateTime": "2020-05-04T16:40:38.105Z", + "time": 215, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 215 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "4d92b33fc79ec6986d8c51cff0575d00", "_order": 1, "cache": {}, "request": { @@ -472,33 +472,23 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 793, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" + "name": "id", + "value": "model.prefix/t6vm-0595" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ft6vm-0595" }, "response": { - "bodySize": 1416, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ft6vm-0595\"}}" }, "cookies": [], "headers": [ @@ -517,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:55.947Z", - "time": 112, + "startedDateTime": "2020-05-04T16:40:38.107Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -526,43 +516,53 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 93 } }, { - "_id": "aabf50f0ded5d68ae03eb3d6cdcb3479", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, "cache": {}, "request": { - "bodySize": 736, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 836, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/4xew-qr39\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 2178, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2178, - "text": "{\"data\":{\"id\":\"10.0330/4xew-qr39\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/4xew-qr39\",\"prefix\":\"10.0330\",\"suffix\":\"4xew-qr39\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC80WEVXLVFSMzk8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8dmVyc2lvbi8+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL0FBLmpzb24iPkF0dHJpYnV0aW9uIEFzc3VyYW5jZSBMaWNlbnNlPC9yaWdodHM+CiAgPC9yaWdodHNMaXN0Pgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:55.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/4xew-qr39\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -578,11 +578,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:55.947Z", - "time": 186, + "startedDateTime": "2020-05-04T16:40:38.107Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 186 + "wait": 117 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har index f804563b2..d71f103a9 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding size", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":41,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:07.158Z", - "time": 106, + "startedDateTime": "2020-05-04T16:40:21.348Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 160 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:07.734Z", - "time": 187, + "startedDateTime": "2020-05-04T16:40:22.184Z", + "time": 196, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 187 + "wait": 196 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:07.734Z", - "time": 222, + "startedDateTime": "2020-05-04T16:40:22.184Z", + "time": 209, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 222 + "wait": 209 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/krdh-8t83\"]}" + "text": "{\"dois\":[\"10.0330/m225-0b29\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:08.058Z", - "time": 116, + "startedDateTime": "2020-05-04T16:40:22.481Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 116 + "wait": 96 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:08.058Z", - "time": 167, + "startedDateTime": "2020-05-04T16:40:22.481Z", + "time": 122, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 167 + "wait": 122 } }, { - "_id": "b1576297050792ec8a3b7246338fd74c", + "_id": "0a3e4d60499ce00b2e82972c7e0faf50", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/krdh-8t83" + "value": "model.prefix/m225-0b29" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fkrdh-8t83" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fkrdh-8t83\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:08.215Z", - "time": 123, + "startedDateTime": "2020-05-04T16:40:22.590Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -388,89 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 126 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T16:23:42.930Z", - "time": 205, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 205 - } - }, - { - "_id": "4adad779cb8dc458f428e306b9518571", + "_id": "c6df921f33b0a81bae512e40bcc12918", "_order": 0, "cache": {}, "request": { - "bodySize": 652, + "bodySize": 656, "cookies": [], "headers": [ { @@ -488,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/krdh-8t83\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[\"5kb\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 1926, + "bodySize": 1979, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1926, - "text": "{\"data\":{\"id\":\"10.0330/krdh-8t83\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/krdh-8t83\",\"prefix\":\"10.0330\",\"suffix\":\"krdh-8t83\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[\"5kb\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9LUkRILThUODM8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:43.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/krdh-8t83\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 1979, + "text": "{\"data\":{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"prefix\":\"10.0330\",\"suffix\":\"m225-0b29\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9NMjI1LTBCMjk8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/m225-0b29\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -517,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:43.099Z", - "time": 182, + "startedDateTime": "2020-05-04T16:40:22.997Z", + "time": 243, "timings": { "blocked": -1, "connect": -1, @@ -526,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 243 } }, { - "_id": "b1576297050792ec8a3b7246338fd74c", + "_id": "0a3e4d60499ce00b2e82972c7e0faf50", "_order": 1, "cache": {}, "request": { @@ -552,17 +478,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/krdh-8t83" + "value": "model.prefix/m225-0b29" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fkrdh-8t83" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fkrdh-8t83\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29\"}}" }, "cookies": [], "headers": [ @@ -581,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:43.100Z", - "time": 100, + "startedDateTime": "2020-05-04T16:40:23.000Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -590,12 +516,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 118 } }, { "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 2, + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -632,11 +558,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -655,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:43.100Z", - "time": 113, + "startedDateTime": "2020-05-04T16:40:23.000Z", + "time": 159, "timings": { "blocked": -1, "connect": -1, @@ -664,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 159 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-url_744013006/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-url_744013006/recording.har index 1db0d4ff4..64d7e510c 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-url_744013006/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-url_744013006/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding url", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite201\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T11:35:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":25,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":31,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:09.646Z", - "time": 374, + "startedDateTime": "2020-05-04T16:39:44.558Z", + "time": 174, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 374 + "wait": 174 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T11:35:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:11.278Z", - "time": 809, + "startedDateTime": "2020-05-04T16:39:45.977Z", + "time": 589, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 809 + "wait": 589 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:11.278Z", - "time": 1997, + "startedDateTime": "2020-05-04T16:39:45.977Z", + "time": 612, "timings": { "blocked": -1, "connect": -1, @@ -205,39 +205,53 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1997 + "wait": 612 } }, { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 753, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "prefix", - "value": "10.0330" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 30, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/pyn7-qg53\"]}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -256,8 +270,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:13.319Z", - "time": 833, + "startedDateTime": "2020-05-04T16:39:46.771Z", + "time": 211, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +279,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 833 + "wait": 211 } }, { @@ -315,8 +329,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:13.319Z", - "time": 837, + "startedDateTime": "2020-05-04T16:39:46.834Z", + "time": 138, "timings": { "blocked": -1, "connect": -1, @@ -324,53 +338,163 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 837 + "wait": 138 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_id": "1f2ed9b690e18a122e621204614c336f", + "_order": 0, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ { - "name": "accept", - "value": "application/vnd.api+json" + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 753, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "prefix", + "value": "10.0330" + } + ], + "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + }, + "response": { + "bodySize": 30, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 30, + "text": "{\"dois\":[\"10.0330/tvyf-7z36\"]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T16:39:46.834Z", + "time": 169, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 169 + } + }, + { + "_id": "1f2ed9b690e18a122e621204614c336f", + "_order": 1, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 753, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "page", - "value": { - "size": "25" - } + "name": "prefix", + "value": "10.0330" + } + ], + "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + }, + "response": { + "bodySize": 30, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 30, + "text": "{\"dois\":[\"10.0330/9bpe-qh10\"]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" }, { - "name": "repository-id", - "value": "datacite.test" + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T16:39:47.028Z", + "time": 74, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 74 + } + }, + { + "_id": "1fca9fa8bf4a55afe428c163901a8e4e", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" }, { - "name": "sort", - "value": "name" + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/tvyf-7z36" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ftvyf-7z36" }, "response": { - "bodySize": 1416, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ftvyf-7z36\"}}" }, "cookies": [], "headers": [ @@ -389,8 +513,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:14.560Z", - "time": 194, + "startedDateTime": "2020-05-04T16:39:47.084Z", + "time": 121, "timings": { "blocked": -1, "connect": -1, @@ -398,11 +522,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 194 + "wait": 121 } }, { - "_id": "701c7dc9055e9d755dc1414c613ebb43", + "_id": "5c6a4c81ba6bc12710afd65996067182", "_order": 0, "cache": {}, "request": { @@ -424,17 +548,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/pyn7-qg53" + "value": "model.prefix/9bpe-qh10" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fpyn7-qg53" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F9bpe-qh10" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fpyn7-qg53\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F9bpe-qh10\"}}" }, "cookies": [], "headers": [ @@ -453,8 +577,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:14.690Z", - "time": 207, + "startedDateTime": "2020-05-04T16:39:47.161Z", + "time": 138, "timings": { "blocked": -1, "connect": -1, @@ -462,7 +586,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 138 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-version_3957509799/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-version_3957509799/recording.har index 999fb9c24..a6983ad0c 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-version_3957509799/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-version_3957509799/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and adding version", "browser": { "name": "Chrome", - "version": "80.0.3987.163" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":39,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:04.599Z", - "time": 236, + "startedDateTime": "2020-05-04T16:40:16.509Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 236 + "wait": 102 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 773, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1680, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:05.276Z", - "time": 125, + "startedDateTime": "2020-05-04T16:40:17.282Z", + "time": 144, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 125 + "wait": 144 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -151,33 +166,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1416, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:05.276Z", - "time": 190, + "startedDateTime": "2020-05-04T16:40:17.282Z", + "time": 160, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 190 + "wait": 160 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/gbbm-w482\"]}" + "text": "{\"dois\":[\"10.0330/b4b4-wq94\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:05.506Z", - "time": 75, + "startedDateTime": "2020-05-04T16:40:17.481Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 75 + "wait": 94 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:05.506Z", - "time": 129, + "startedDateTime": "2020-05-04T16:40:17.481Z", + "time": 128, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 128 } }, { - "_id": "ace6f086efc5945c8b6157908fc938be", + "_id": "5bdade0994f00b705ee79b642dfd609c", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/gbbm-w482" + "value": "model.prefix/b4b4-wq94" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fgbbm-w482" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fb4b4-wq94" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fgbbm-w482\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fb4b4-wq94\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T09:19:05.608Z", - "time": 140, + "startedDateTime": "2020-05-04T16:40:17.592Z", + "time": 119, "timings": { "blocked": -1, "connect": -1, @@ -388,7 +388,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 119 } }, { @@ -430,11 +430,149 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T16:40:17.729Z", + "time": 326, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 326 + } + }, + { + "_id": "5bdade0994f00b705ee79b642dfd609c", + "_order": 1, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/b4b4-wq94" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fb4b4-wq94" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fb4b4-wq94\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T16:40:17.963Z", + "time": 81, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 81 + } + }, + { + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 2, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 836, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + }, + "response": { + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -453,8 +591,72 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:39.202Z", - "time": 100, + "startedDateTime": "2020-05-04T16:40:17.963Z", + "time": 162, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 162 + } + }, + { + "_id": "fbd55ad9e0cd96c95d8f4dff6d494e54", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 656, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" + }, + { + "name": "accept", + "value": "application/vnd.api+json" + } + ], + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" + }, + "response": { + "bodySize": 1991, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1991, + "text": "{\"data\":{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"prefix\":\"10.0330\",\"suffix\":\"b4b4-wq94\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9CNEI0LVdROTQ8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbj42NzwvdmVyc2lvbj4KPC9yZXNvdXJjZT4K\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 201, + "statusText": "Created" + }, + "startedDateTime": "2020-05-04T16:40:17.963Z", + "time": 202, "timings": { "blocked": -1, "connect": -1, @@ -462,7 +664,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 202 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-entering-new-subject_709947890/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-entering-new-subject_709947890/recording.har index d2b4acc9e..b4193d636 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-entering-new-subject_709947890/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-entering-new-subject_709947890/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and entering new subject", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":39,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:23.379Z", - "time": 121, + "startedDateTime": "2020-05-04T16:40:11.544Z", + "time": 163, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 163 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 773, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1680, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:24.446Z", - "time": 166, + "startedDateTime": "2020-05-04T16:40:12.485Z", + "time": 294, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 166 + "wait": 294 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -151,33 +166,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1416, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:24.446Z", - "time": 213, + "startedDateTime": "2020-05-04T16:40:12.485Z", + "time": 321, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 213 + "wait": 321 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/pnrc-2855\"]}" + "text": "{\"dois\":[\"10.0330/fn9f-3y10\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:24.698Z", - "time": 75, + "startedDateTime": "2020-05-04T16:40:13.147Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 75 + "wait": 115 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:24.698Z", - "time": 137, + "startedDateTime": "2020-05-04T16:40:13.147Z", + "time": 156, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 137 + "wait": 156 } }, { - "_id": "bbf3103a88edd60c89d74a4620c8279d", + "_id": "0ecc9a7fadec542c6a920c2d34061623", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/pnrc-2855" + "value": "model.prefix/fn9f-3y10" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fpnrc-2855" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ffn9f-3y10" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fpnrc-2855\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ffn9f-3y10\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:24.797Z", - "time": 141, + "startedDateTime": "2020-05-04T16:40:13.286Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -388,7 +388,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 141 + "wait": 116 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-language_2341761968/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-language_2341761968/recording.har index 05de49d5e..a51254333 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-language_2341761968/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-language_2341761968/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and selecting language", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":36,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:09.804Z", - "time": 127, + "startedDateTime": "2020-05-04T16:40:02.532Z", + "time": 142, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 142 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:10.620Z", - "time": 395, + "startedDateTime": "2020-05-04T16:40:03.973Z", + "time": 194, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 395 + "wait": 194 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:10.620Z", - "time": 455, + "startedDateTime": "2020-05-04T16:40:03.973Z", + "time": 198, "timings": { "blocked": -1, "connect": -1, @@ -205,38 +205,39 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 455 + "wait": 198 } }, { - "_id": "4d1cf57852130a759c653ec28a941a86", + "_id": "1f2ed9b690e18a122e621204614c336f", "_order": 0, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 777, + "headersSize": 753, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" + "queryString": [ + { + "name": "prefix", + "value": "10.0330" + } + ], + "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" }, "response": { - "bodySize": 457, + "bodySize": 30, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 30, + "text": "{\"dois\":[\"10.0330/2s25-de93\"]}" }, "cookies": [], "headers": [ @@ -255,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:11.320Z", - "time": 246, + "startedDateTime": "2020-05-04T16:40:04.453Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -264,39 +265,38 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 246 + "wait": 111 } }, { - "_id": "1f2ed9b690e18a122e621204614c336f", + "_id": "4d1cf57852130a759c653ec28a941a86", "_order": 0, "cache": {}, "request": { "bodySize": 0, "cookies": [], "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 753, + "headersSize": 777, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + "queryString": [], + "url": "https://api.test.datacite.org/prefixes/10.0330" }, "response": { - "bodySize": 30, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/18tf-4f57\"]}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:11.320Z", - "time": 253, + "startedDateTime": "2020-05-04T16:40:04.453Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 253 + "wait": 126 } }, { - "_id": "ebc8898c25cfc7f16fede1998eae8ebe", + "_id": "eda2834295a3212f4fe189b37387de00", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/18tf-4f57" + "value": "model.prefix/2s25-de93" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F18tf-4f57" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2s25-de93" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F18tf-4f57\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2s25-de93\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:11.660Z", - "time": 128, + "startedDateTime": "2020-05-04T16:40:04.601Z", + "time": 101, "timings": { "blocked": -1, "connect": -1, @@ -388,15 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 101 } }, { - "_id": "4c5aa35795a16e2ecc7ba702fd14dfcf", + "_id": "fedbf7499f90dc8992e02a706bf46db4", "_order": 0, "cache": {}, "request": { - "bodySize": 647, + "bodySize": 656, "cookies": [], "headers": [ { @@ -414,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/18tf-4f57\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":\"en\",\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":\"en\",\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 1953, + "bodySize": 2011, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1953, - "text": "{\"data\":{\"id\":\"10.0330/18tf-4f57\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/18tf-4f57\",\"prefix\":\"10.0330\",\"suffix\":\"18tf-4f57\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8xOFRGLTRGNTc8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8bGFuZ3VhZ2U+ZW48L2xhbmd1YWdlPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/18tf-4f57\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2011, + "text": "{\"data\":{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"prefix\":\"10.0330\",\"suffix\":\"2s25-de93\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8yUzI1LURFOTM8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8bGFuZ3VhZ2U+ZW48L2xhbmd1YWdlPgogIDxzaXplcy8+CiAgPGZvcm1hdHMvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/2s25-de93\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -443,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:26.173Z", - "time": 366, + "startedDateTime": "2020-05-04T16:40:05.018Z", + "time": 210, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 366 + "wait": 210 } }, { - "_id": "ebc8898c25cfc7f16fede1998eae8ebe", + "_id": "eda2834295a3212f4fe189b37387de00", "_order": 1, "cache": {}, "request": { @@ -478,17 +478,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/18tf-4f57" + "value": "model.prefix/2s25-de93" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F18tf-4f57" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2s25-de93" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F18tf-4f57\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2s25-de93\"}}" }, "cookies": [], "headers": [ @@ -507,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:26.178Z", - "time": 234, + "startedDateTime": "2020-05-04T16:40:05.019Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -516,7 +516,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 234 + "wait": 97 } }, { @@ -558,11 +558,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -581,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:26.178Z", - "time": 355, + "startedDateTime": "2020-05-04T16:40:05.019Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 355 + "wait": 120 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-subject_360826678/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-subject_360826678/recording.har index cadc8f03d..06e16e5fd 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-subject_360826678/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-subject_360826678/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and selecting subject", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":37,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:20.434Z", - "time": 199, + "startedDateTime": "2020-05-04T16:40:05.880Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 199 + "wait": 118 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 773, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1680, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:46:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:21.241Z", - "time": 161, + "startedDateTime": "2020-05-04T16:40:06.771Z", + "time": 211, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 161 + "wait": 211 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -151,33 +166,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 836, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1416, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:21.241Z", - "time": 206, + "startedDateTime": "2020-05-04T16:40:06.771Z", + "time": 237, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 206 + "wait": 237 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/jvth-x727\"]}" + "text": "{\"dois\":[\"10.0330/k52b-bv27\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:21.488Z", - "time": 144, + "startedDateTime": "2020-05-04T16:40:07.006Z", + "time": 78, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 144 + "wait": 78 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:21.488Z", - "time": 228, + "startedDateTime": "2020-05-04T16:40:07.006Z", + "time": 155, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 228 + "wait": 155 } }, { - "_id": "2e82903664640f17ec30dee357599d6c", + "_id": "99898291b11bcc84a4285037f50b162f", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/jvth-x727" + "value": "model.prefix/k52b-bv27" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fjvth-x727" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fk52b-bv27" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fjvth-x727\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fk52b-bv27\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:53:21.660Z", - "time": 167, + "startedDateTime": "2020-05-04T16:40:07.138Z", + "time": 127, "timings": { "blocked": -1, "connect": -1, @@ -388,53 +388,43 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 167 + "wait": 127 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_id": "dc2884dbc3bfedfc764db5b9299b7bea", + "_order": 0, "cache": {}, "request": { - "bodySize": 0, + "bodySize": 820, "cookies": [], "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, { "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 836, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" + "value": "application/vnd.api+json;charset=utf-8" }, { - "name": "sort", - "value": "name" + "name": "accept", + "value": "application/vnd.api+json" } ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"subjectScheme\":\"OECD\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\"}],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 1416, + "bodySize": 2403, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 2403, + "text": "{\"data\":{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"prefix\":\"10.0330\",\"suffix\":\"k52b-bv27\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"subjectScheme\":\"OECD\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9LNTJCLUJWMjc8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c3ViamVjdHM+CiAgICA8c3ViamVjdCBzdWJqZWN0U2NoZW1lPSJPRUNEIiBzY2hlbWVVUkk9Imh0dHA6Ly93d3cub2VjZC5vcmcvc2NpZW5jZS9pbm5vIiB2YWx1ZVVSST0iaHR0cDovL3d3dy5vZWNkLm9yZy9zY2llbmNlL2lubm8vMzgyMzUxNDcucGRmIj5NYXRlcmlhbHMgZW5naW5lZXJpbmc8L3N1YmplY3Q+CiAgPC9zdWJqZWN0cz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/k52b-bv27\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -450,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 201, + "statusText": "Created" }, - "startedDateTime": "2020-04-23T16:23:29.659Z", - "time": 146, + "startedDateTime": "2020-05-04T16:40:07.965Z", + "time": 248, "timings": { "blocked": -1, "connect": -1, @@ -462,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 248 } }, { - "_id": "2e82903664640f17ec30dee357599d6c", + "_id": "99898291b11bcc84a4285037f50b162f", "_order": 1, "cache": {}, "request": { @@ -488,17 +478,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/jvth-x727" + "value": "model.prefix/k52b-bv27" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fjvth-x727" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fk52b-bv27" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fjvth-x727\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fk52b-bv27\"}}" }, "cookies": [], "headers": [ @@ -517,8 +507,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:29.659Z", - "time": 230, + "startedDateTime": "2020-05-04T16:40:07.967Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -526,43 +516,53 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 230 + "wait": 95 } }, { - "_id": "d621c3c19c935d36b5fc9df46b5fa18f", - "_order": 0, + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, "cache": {}, "request": { - "bodySize": 811, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 836, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/jvth-x727\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"subjectScheme\":\"OECD\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\"}],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 2345, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2345, - "text": "{\"data\":{\"id\":\"10.0330/jvth-x727\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jvth-x727\",\"prefix\":\"10.0330\",\"suffix\":\"jvth-x727\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"subjectScheme\":\"OECD\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9KVlRILVg3Mjc8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c3ViamVjdHM+CiAgICA8c3ViamVjdCBzdWJqZWN0U2NoZW1lPSJPRUNEIiBzY2hlbWVVUkk9Imh0dHA6Ly93d3cub2VjZC5vcmcvc2NpZW5jZS9pbm5vIiB2YWx1ZVVSST0iaHR0cDovL3d3dy5vZWNkLm9yZy9zY2llbmNlL2lubm8vMzgyMzUxNDcucGRmIj5NYXRlcmlhbHMgZW5naW5lZXJpbmc8L3N1YmplY3Q+CiAgPC9zdWJqZWN0cz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T16:23:29.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T16:23:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/jvth-x727\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -578,11 +578,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-04-23T16:23:29.659Z", - "time": 232, + "startedDateTime": "2020-05-04T16:40:07.967Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 232 + "wait": 113 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-title_4140788196/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-title_4140788196/recording.har index 0edae0423..b14517672 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-title_4140788196/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-selecting-title_4140788196/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | doi/visiting the form and selecting title", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite201\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T11:35:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":25,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":32,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:18.640Z", - "time": 95, + "startedDateTime": "2020-05-04T16:39:51.514Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 126 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T11:35:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:19.643Z", - "time": 138, + "startedDateTime": "2020-05-04T16:39:52.552Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 126 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:19.643Z", - "time": 163, + "startedDateTime": "2020-05-04T16:39:52.552Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 131 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/en98-jk22\"]}" + "text": "{\"dois\":[\"10.0330/jnwe-my69\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:19.859Z", - "time": 71, + "startedDateTime": "2020-05-04T16:39:52.726Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 71 + "wait": 111 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:19.859Z", - "time": 101, + "startedDateTime": "2020-05-04T16:39:52.726Z", + "time": 219, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 219 } }, { - "_id": "2492c959f002fe2d99838972c8c10416", + "_id": "9f93a9af155e152397e6412b3b3d69f9", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/en98-jk22" + "value": "model.prefix/jnwe-my69" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fen98-jk22" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fjnwe-my69" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fen98-jk22\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fjnwe-my69\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:19.945Z", - "time": 138, + "startedDateTime": "2020-05-04T16:39:52.896Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -388,15 +388,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 150 } }, { - "_id": "5a936b193cb59a6ac81728c0b7b0d59c", + "_id": "6da8252a49b41cf488e1acb627af79a5", "_order": 0, "cache": {}, "request": { - "bodySize": 697, + "bodySize": 706, "cookies": [], "headers": [ { @@ -414,17 +414,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/en98-jk22\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[{\"title\":\"The title\",\"titleType\":null,\"lang\":null}],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"identifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[{\"title\":\"The title\",\"titleType\":null,\"lang\":null}],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois" }, "response": { - "bodySize": 2023, + "bodySize": 2081, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2023, - "text": "{\"data\":{\"id\":\"10.0330/en98-jk22\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/en98-jk22\",\"prefix\":\"10.0330\",\"suffix\":\"en98-jk22\",\"identifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[{\"title\":\"The title\",\"titleType\":null,\"lang\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9FTjk4LUpLMjI8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlRoZSB0aXRsZTwvdGl0bGU+CiAgPC90aXRsZXM+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T17:00:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T17:00:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/en98-jk22\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2081, + "text": "{\"data\":{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"prefix\":\"10.0330\",\"suffix\":\"jnwe-my69\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[{\"title\":\"The title\",\"titleType\":null,\"lang\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9KTldFLU1ZNjk8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlRoZSB0aXRsZTwvdGl0bGU+CiAgPC90aXRsZXM+CiAgPHB1Ymxpc2hlci8+CiAgPHB1YmxpY2F0aW9uWWVhci8+CiAgPHNpemVzLz4KICA8Zm9ybWF0cy8+CiAgPHZlcnNpb24vPgo8L3Jlc291cmNlPgo=\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/jnwe-my69\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -443,8 +443,8 @@ "status": 201, "statusText": "Created" }, - "startedDateTime": "2020-04-23T17:00:20.285Z", - "time": 268, + "startedDateTime": "2020-05-04T16:39:53.389Z", + "time": 306, "timings": { "blocked": -1, "connect": -1, @@ -452,7 +452,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 268 + "wait": 306 } }, { @@ -494,11 +494,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -517,8 +517,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:20.286Z", - "time": 167, + "startedDateTime": "2020-05-04T16:39:53.390Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -526,11 +526,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 167 + "wait": 150 } }, { - "_id": "2492c959f002fe2d99838972c8c10416", + "_id": "9f93a9af155e152397e6412b3b3d69f9", "_order": 1, "cache": {}, "request": { @@ -552,17 +552,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/en98-jk22" + "value": "model.prefix/jnwe-my69" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fen98-jk22" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fjnwe-my69" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fen98-jk22\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fjnwe-my69\"}}" }, "cookies": [], "headers": [ @@ -581,8 +581,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T17:00:20.286Z", - "time": 789, + "startedDateTime": "2020-05-04T16:39:53.390Z", + "time": 184, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +590,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 789 + "wait": 184 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-for-a-specific-doi_190666145/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-for-a-specific-doi_190666145/recording.har deleted file mode 100644 index 25e8b81a3..000000000 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-for-a-specific-doi_190666145/recording.har +++ /dev/null @@ -1,146 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | client_admin | doi/visiting the form for a specific doi", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "c00b88452061f1e5914353cf2faca92b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 801, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "client" - } - ], - "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" - }, - "response": { - "bodySize": 8625, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 8625, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:16.614Z", - "time": 274, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 274 - } - }, - { - "_id": "c00b88452061f1e5914353cf2faca92b", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 801, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "client" - } - ], - "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" - }, - "response": { - "bodySize": 8625, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 8625, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite701\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:46:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:53:17.573Z", - "time": 455, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 455 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-dois_685517209/recording.har b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-dois_685517209/recording.har index 10bde0c66..c624eb6a5 100644 --- a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-dois_685517209/recording.har +++ b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-dois_685517209/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | provider/visiting provider DataCite dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 6932, + "bodySize": 7005, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6932, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7005, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:13.693Z", - "time": 95, + "startedDateTime": "2020-05-04T16:40:40.971Z", + "time": 143, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 143 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:13.824Z", - "time": 98, + "startedDateTime": "2020-05-04T16:40:41.156Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 116 } } ], diff --git a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-info_1747019132/recording.har b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-info_1747019132/recording.har index a6d4613bd..574e651b8 100644 --- a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-info_1747019132/recording.har +++ b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-info_1747019132/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | provider/visiting provider DataCite info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 6932, + "bodySize": 7005, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6932, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7005, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:11.945Z", - "time": 136, + "startedDateTime": "2020-05-04T16:40:39.129Z", + "time": 152, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 152 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":45,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:12.108Z", - "time": 102, + "startedDateTime": "2020-05-04T16:40:39.298Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 97 } } ], diff --git a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-prefixes_2532347128/recording.har b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-prefixes_2532347128/recording.har index 8c71cfe17..2ad5a70e7 100644 --- a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-prefixes_2532347128/recording.har +++ b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-prefixes_2532347128/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | provider/visiting provider DataCite prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 6932, + "bodySize": 7005, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6932, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7005, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:12.997Z", - "time": 313, + "startedDateTime": "2020-05-04T16:40:40.106Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 313 + "wait": 97 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":45,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:13.330Z", - "time": 97, + "startedDateTime": "2020-05-04T16:40:40.216Z", + "time": 136, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 136 } } ], diff --git a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-repositories_601366784/recording.har b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-repositories_601366784/recording.har index 979b4af2f..051b83882 100644 --- a/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-repositories_601366784/recording.har +++ b/recordings/Acceptance-client_admin-provider_2682183478/visiting-provider-DataCite-repositories_601366784/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | provider/visiting provider DataCite repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 6932, + "bodySize": 7005, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6932, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7005, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:12.485Z", - "time": 96, + "startedDateTime": "2020-05-04T16:40:39.658Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 94 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":45,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:12.595Z", - "time": 118, + "startedDateTime": "2020-05-04T16:40:39.775Z", + "time": 114, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 114 } } ], diff --git a/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-form_727451422/recording.har b/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-form_727451422/recording.har index 2ee3a0796..b1a552bf7 100644 --- a/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-form_727451422/recording.har +++ b/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-form_727451422/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | repository/editing repository DataCite Test form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:17.457Z", - "time": 198, + "startedDateTime": "2020-05-04T16:40:45.051Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 198 + "wait": 96 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:18.063Z", - "time": 111, + "startedDateTime": "2020-05-04T16:40:45.585Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 131 } } ], diff --git a/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-password-form_1950781905/recording.har b/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-password-form_1950781905/recording.har index 5d523c128..e26c62dca 100644 --- a/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-password-form_1950781905/recording.har +++ b/recordings/Acceptance-client_admin-repository_1178715723/editing-repository-DataCite-Test-password-form_1950781905/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | repository/editing repository DataCite Test password form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:18.287Z", - "time": 155, + "startedDateTime": "2020-05-04T16:40:45.833Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 155 + "wait": 99 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:18.558Z", - "time": 88, + "startedDateTime": "2020-05-04T16:40:46.084Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 88 + "wait": 91 } } ], diff --git a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-dois_3205762602/recording.har b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-dois_3205762602/recording.har index 8a4ded820..91a3a960c 100644 --- a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-dois_3205762602/recording.har +++ b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-dois_3205762602/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | repository/visiting repository DataCite Test dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:16.047Z", - "time": 127, + "startedDateTime": "2020-05-04T16:40:43.823Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 94 } }, { @@ -179,11 +179,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 34562, + "bodySize": 35712, "content": { "mimeType": "application/json; charset=utf-8", - "size": 34562, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T04:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fqse-wb15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fqse-wb15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/fqse-wb15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Trento, Giovanna\",\"nameType\":\"Personal\",\"givenName\":\"Giovanna\",\"familyName\":\"Trento\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Pier Paolo Pasolini and Pan-Meridional Italianness\"}],\"publisher\":\"Turia + Kant\",\"container\":{\"type\":\"Series\",\"title\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities\",\"volume\":\"Geographies\",\"lastPage\":\"83\",\"firstPage\":\"59\",\"identifier\":\"https://doi.org/10.25620/ci-06\",\"identifierType\":\"DOI\"},\"publicationYear\":2012,\"subjects\":[{\"subject\":\"Pasolini, Pier Paolo\"},{\"subject\":\"Italy, Southern\"},{\"subject\":\"panafricanism\"},{\"subject\":\"colonialism\"}],\"contributors\":[{\"name\":\"Di Blasi, Luca\",\"nameType\":\"Personal\",\"givenName\":\"Luca\",\"familyName\":\"Di Blasi\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6755-6570\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Gragnolati, Manuele\",\"nameType\":\"Personal\",\"givenName\":\"Manuele\",\"familyName\":\"Gragnolati\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8178-3443\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Holzhey, Christoph F. E.\",\"nameType\":\"Personal\",\"givenName\":\"Christoph F. E.\",\"familyName\":\"Holzhey\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1312-1878\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"inbook\",\"citeproc\":\"chapter\",\"schemaOrg\":\"Chapter\",\"resourceType\":\"Book_chapter\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-06\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"https://www.ici-berlin.org/oa/ci-06/index.html\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-85132-681-9\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-728X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-731X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-print\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-online\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"© by the author(s)\"},{\"rights\":\"This version is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"description\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities, Geographies, 59-83\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T08:18:22.000Z\",\"registered\":null,\"published\":\"2012\",\"updated\":\"2020-04-18T08:18:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-15T12:39:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/6pkt-sx79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6pkt-sx79\",\"identifiers\":[{\"identifier\":\"dssda\",\"identifierType\":\"ARK\"}],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[{\"name\":\"dsfdfs, fd\",\"nameType\":\"Personal\",\"givenName\":\"fd\",\"familyName\":\"dsfdfs\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[{\"date\":\"2009\",\"dateType\":\"Withdrawn\",\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Documents\",\"relatedIdentifier\":\"dfds\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"ISTC\",\"relatedMetadataScheme\":null}],\"sizes\":[\"32\"],\"formats\":[\"23\"],\"version\":null,\"rightsList\":[{\"rights\":\"Amazon Digital Services License\",\"rightsUri\":\"http://spdx.org/licenses/ADSL.json\"}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":21,\"northBoundLatitude\":12,\"southBoundLatitude\":44,\"westBoundLongitude\":21},\"geoLocationPlace\":\"sdffsd\",\"geoLocationPoint\":{\"pointLatitude\":21,\"pointLongitude\":12}}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Università degli Studi di Cassino e del Lazio Meridionale\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/501100012699\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T11:07:21.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-07T11:08:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/ytzz-wq10\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/ytzz-wq10\",\"identifiers\":[],\"creators\":[{\"name\":\"Buys, Matthew\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"},{\"name\":\"ORCID\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04fa4r544\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Matthew Buys\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test title - new form\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sociology\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en\",\"description\":\"Test description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":null,\"northBoundLatitude\":null,\"southBoundLatitude\":null,\"westBoundLongitude\":null},\"geoLocationPlace\":\"Amsterdam\",\"geoLocationPoint\":{\"pointLatitude\":null,\"pointLongitude\":null}}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T07:20:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-07T07:20:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-06T16:42:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7m2v-5757\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7m2v-5757\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/7m2v-5757\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Center For International Earth Science Information Network-CIESIN-Columbia University\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Low Elevation Coastal Zone (LECZ) Urban-Rural Population and Land Area Estimates, Version 3\"},{\"title\":\"Urban-Rural Population and Land Area Estimates, Version 3 (1990, 2000, 2015)\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC)\",\"container\":{},\"publicationYear\":2013,\"subjects\":[{\"subject\":\"climate\"},{\"subject\":\"marine and coastal\"},{\"subject\":\"population\"},{\"subject\":\"sustainability\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"tabular; map; map service\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPreviousVersionOf\",\"relatedIdentifier\":\"10.7927/yyyyy3\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T12:48:27.000Z\",\"registered\":null,\"published\":\"2013\",\"updated\":\"2020-04-06T12:49:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-04-06T07:59:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/yh3e-rp55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/yh3e-rp55\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":null,\"nameIdentifiers\":[]}],\"dates\":[{\"date\":null,\"dateType\":null,\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":null,\"awardNumber\":null,\"funderIdentifier\":null,\"funderIdentifierType\":\"Other\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-04T06:46:13.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-04T06:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/n77d-nz44\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/n77d-nz44\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[\"444\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T09:31:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-30T09:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/kvth-tj94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/kvth-tj94\",\"identifiers\":[{\"identifier\":\"1288-90\",\"identifierType\":\"Pubmed\"}],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6628-8225\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is a new dataset\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Biochemistry\",\"valueUri\":\"jhggff\",\"schemeUri\":\"\",\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Dreyer, Britta\",\"nameType\":\"Personal\",\"givenName\":\"Britta\",\"familyName\":\"Dreyer\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"ar\",\"types\":{\"resourceType\":\"Satellite Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://tib.eu\",\"schemeType\":\"iosfudsfj\",\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.1029/PA004i004p00413\",\"resourceTypeGeneral\":\"Image\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":\"Dublin Core\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Cites\",\"relatedIdentifier\":\"asdadsads\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"EISSN\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"aesfdjäadspujgäapsjgear#jgdfaÖXMCv\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Barcelona\"},{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://tib.eu\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T16:18:09.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-03-27T10:23:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-25T05:46:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":16,\"totalPages\":1,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":10},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":16}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":16}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":11},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":5}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":2}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":14},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":2}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"1\",\"title\":\"1\",\"count\":2},{\"id\":\"0\",\"title\":\"0\",\"count\":1}],\"linkChecksSchemaOrgId\":2,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Computer and information sciences\",\"title\":\"Computer And Information Sciences\",\"count\":2},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":2},{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":1},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":1},{\"id\":\"Italy, Southern\",\"title\":\"Italy, Southern\",\"count\":1},{\"id\":\"Pasolini, Pier Paolo\",\"title\":\"Pasolini, Pier Paolo\",\"count\":1},{\"id\":\"Sociology\",\"title\":\"Sociology\",\"count\":1},{\"id\":\"climate\",\"title\":\"Climate\",\"count\":1},{\"id\":\"colonialism\",\"title\":\"Colonialism\",\"count\":1},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":1},{\"id\":\"instrument\",\"title\":\"Instrument\",\"count\":1},{\"id\":\"marine and coastal\",\"title\":\"Marine And Coastal\",\"count\":1},{\"id\":\"panafricanism\",\"title\":\"Panafricanism\",\"count\":1},{\"id\":\"population\",\"title\":\"Population\",\"count\":1},{\"id\":\"rda\",\"title\":\"Rda\",\"count\":1}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\"}}" + "size": 35712, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-04T10:02:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T09:02:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T06:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-05-04T03:32:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/pxjp-zj03\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/pxjp-zj03\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T19:30:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T19:30:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":46,\"totalPages\":2,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":40},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":6},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":46}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":5},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":46}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":46}],\"affiliations\":[{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":39},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":7}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":10}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":6}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.test&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -202,8 +202,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:16.184Z", - "time": 199, + "startedDateTime": "2020-05-04T16:40:43.927Z", + "time": 189, "timings": { "blocked": -1, "connect": -1, @@ -211,7 +211,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 199 + "wait": 189 } }, { @@ -238,11 +238,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -261,8 +261,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:16.831Z", - "time": 189, + "startedDateTime": "2020-05-04T16:40:44.684Z", + "time": 149, "timings": { "blocked": -1, "connect": -1, @@ -270,7 +270,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 189 + "wait": 149 } } ], diff --git a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-info_3093299103/recording.har b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-info_3093299103/recording.har index a2c480034..ab953668b 100644 --- a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-info_3093299103/recording.har +++ b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-info_3093299103/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | repository/visiting repository DataCite Test info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:14.598Z", - "time": 111, + "startedDateTime": "2020-05-04T16:40:42.705Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 133 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:14.778Z", - "time": 116, + "startedDateTime": "2020-05-04T16:40:42.972Z", + "time": 162, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 116 + "wait": 162 } }, { @@ -167,7 +167,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 321, - "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" + "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":46}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":6},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:14.779Z", - "time": 107, + "startedDateTime": "2020-05-04T16:40:42.977Z", + "time": 122, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 122 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:14.779Z", - "time": 135, + "startedDateTime": "2020-05-04T16:40:42.977Z", + "time": 154, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 154 } } ], diff --git a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har index cce08b6a7..55d82ec23 100644 --- a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har +++ b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | repository/visiting repository DataCite Test prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:15.023Z", - "time": 102, + "startedDateTime": "2020-05-04T16:40:43.272Z", + "time": 110, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 110 } }, { - "_id": "e2831a55060530a68b1087aa3e2cd861", + "_id": "7e8a6ac4a451e9d62cb5d00ea0cf9229", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,50 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 787, + "headersSize": 890, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.test" + "queryString": [ + { + "name": "client-id", + "value": "" + }, + { + "name": "page", + "value": { + "number": "1", + "size": "25" + } + }, + { + "name": "provider-id", + "value": "" + }, + { + "name": "query", + "value": "" + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "size", + "value": "25" + }, + { + "name": "year", + "value": "" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=" }, "response": { - "bodySize": 704, + "bodySize": 1360, "content": { "mimeType": "application/json; charset=utf-8", - "size": 704, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "size": 1360, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" }, "cookies": [], "headers": [ @@ -122,7 +154,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:15.139Z", + "startedDateTime": "2020-05-04T16:40:43.397Z", "time": 94, "timings": { "blocked": -1, @@ -135,7 +167,7 @@ } }, { - "_id": "7e8a6ac4a451e9d62cb5d00ea0cf9229", + "_id": "e2831a55060530a68b1087aa3e2cd861", "_order": 0, "cache": {}, "request": { @@ -151,50 +183,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 890, + "headersSize": 787, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "client-id", - "value": "" - }, - { - "name": "page", - "value": { - "number": "1", - "size": "25" - } - }, - { - "name": "provider-id", - "value": "" - }, - { - "name": "query", - "value": "" - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "size", - "value": "25" - }, - { - "name": "year", - "value": "" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=" + "queryString": [], + "url": "https://api.test.datacite.org/repositories/datacite.test" }, "response": { - "bodySize": 1473, + "bodySize": 704, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1473, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" + "size": 704, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -213,8 +213,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:15.139Z", - "time": 140, + "startedDateTime": "2020-05-04T16:40:43.397Z", + "time": 215, "timings": { "blocked": -1, "connect": -1, @@ -222,11 +222,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 215 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "4d1cf57852130a759c653ec28a941a86", "_order": 0, "cache": {}, "request": { @@ -242,18 +242,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 773, + "headersSize": 777, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "url": "https://api.test.datacite.org/prefixes/10.0330" }, "response": { - "bodySize": 1680, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -272,8 +272,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:15.534Z", - "time": 182, + "startedDateTime": "2020-05-04T16:40:43.590Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -281,11 +281,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 108 } }, { - "_id": "4d1cf57852130a759c653ec28a941a86", + "_id": "9c69df4d8d2a08d32bcaaa32d3811630", "_order": 0, "cache": {}, "request": { @@ -301,18 +301,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 777, + "headersSize": 778, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" + "url": "https://api.test.datacite.org/prefixes/10.80225" }, "response": { - "bodySize": 457, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -331,8 +331,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:15.534Z", - "time": 231, + "startedDateTime": "2020-05-04T16:40:43.590Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -340,11 +340,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 231 + "wait": 111 } }, { - "_id": "9c69df4d8d2a08d32bcaaa32d3811630", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -360,18 +360,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 778, + "headersSize": 773, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80225" + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 459, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -390,8 +390,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:15.534Z", - "time": 245, + "startedDateTime": "2020-05-04T16:40:43.590Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -399,7 +399,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 245 + "wait": 115 } } ], diff --git a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test_2005196089/recording.har b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test_2005196089/recording.har index bdd9e8713..c5e7c7832 100644 --- a/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test_2005196089/recording.har +++ b/recordings/Acceptance-client_admin-repository_1178715723/visiting-repository-DataCite-Test_2005196089/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | repository/visiting repository DataCite Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,7 +63,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:14.129Z", + "startedDateTime": "2020-05-04T16:40:41.878Z", "time": 126, "timings": { "blocked": -1, @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:14.376Z", - "time": 108, + "startedDateTime": "2020-05-04T16:40:42.299Z", + "time": 167, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 167 } } ], diff --git a/recordings/Acceptance-client_admin-user_3643385044/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-client_admin-user_3643385044/visiting-specific-user_253064087/recording.har index 04b761d6d..3d711c919 100644 --- a/recordings/Acceptance-client_admin-user_3643385044/visiting-specific-user_253064087/recording.har +++ b/recordings/Acceptance-client_admin-user_3643385044/visiting-specific-user_253064087/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | user/visiting specific user", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -39,7 +39,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1290, - "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" + "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" }, "cookies": [], "headers": [ @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:19.251Z", - "time": 140, + "startedDateTime": "2020-05-04T16:40:47.039Z", + "time": 189, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 189 } }, { @@ -103,11 +103,11 @@ "url": "https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405" }, "response": { - "bodySize": 67237, + "bodySize": 66321, "content": { "mimeType": "application/json; charset=utf-8", - "size": 67237, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00359\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00359\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00359\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Ffff\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"ssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Dddd\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939140000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-29T10:41:17.000Z\",\"registered\":\"2019-04-29T10:41:18.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T01:31:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00365\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00365\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00365\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T06:21:10.000Z\",\"registered\":\"2020-04-01T06:21:11.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T06:32:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00362\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00362\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00362\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite44\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":9,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-07T08:11:09.000Z\",\"registered\":\"2019-05-07T08:11:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T04:31:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"pending teeeeeeeee\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Preprint\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-20T12:43:30.000Z\",\"registered\":\"2019-02-20T12:43:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T02:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0065\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0065\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0065\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dfd\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-10/\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T10:29:53.000Z\",\"registered\":\"2019-01-24T10:29:53.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T05:32:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.004\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.004\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.004\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dbg is down!!!!!!!!!!!!!!!!\"},{\"title\":\"Zikoukim\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"Musical Score\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Karamela\"},{\"subject\":\"Music Composition\"},{\"subject\":\"Music Education\"},{\"subject\":\"Musicology\"}],\"contributors\":[{\"name\":\"Dori, Danit Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Danit Sweet\",\"familyName\":\"Dori\",\"affiliation\":[\"Main Campus, Harvard University (Cambridge)\"],\"contributorType\":\"DataCurator\"},{\"name\":\"Jerusalem College Of Technology (Jerusalem)\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-02-14/2020\",\"dateType\":\"Collected\"},{\"date\":\"2020/2024\",\"dateType\":\"Created\"},{\"date\":\"2019-02-14\",\"dateType\":\"Updated\"},{\"date\":\"2019-05/2020\",\"dateType\":\"Valid\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"he\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.1007/s10841-006-9063-4\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"jpg\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Peretz was born and raised in Tiberias. His father was of Moroccan Jewish origin and his mother was of Iraqi Jewish origin. Peretz started singing as a poet in a synagogue in Tiberias at the age of 13 and began to compose songs. At the age of 18 Peretz was inducted into the Israel Defense Forces for obligatory military service. During his service, he performed \\\"שיר המעלות‬\\\", during Yom Hazikaron (the Israeli Memorial Day) ceremonies held at his base that received positive feedback leading to him serving in a military music band. In 2002, he started writing songs while in the Army. After release from the Army, he released his first album in 2005 entitled Mabit El Hamromim (מביט אל המרומים‬) that saw sale of over 10,000 copies in Israel\",\"descriptionType\":\"Methods\"},{\"description\":\"2017: Bucher Chadash (בחור חדש) (meaning New Guy)\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"Moshe Peretz (Hebrew: משה פרץ‬; born 10 May 1983) is an Israeli \\\"Mizrahi\\\" pop singer-songwriter and composer. He is also currently serving as a judge for the first season of The X Factor Israel.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Tiberias, Israel\"},{\"geoLocationPoint\":{\"pointLatitude\":\"10.0\",\"pointLongitude\":\"95.0\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"55.0\",\"northBoundLatitude\":\"9.0\",\"southBoundLatitude\":\"21.0\",\"westBoundLongitude\":\"95.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Go Music\",\"funderName\":\"Hadassah Medical Center (Jerusalem)\",\"awardNumber\":\"Music\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-07T06:52:08.000Z\",\"registered\":\"2019-02-07T06:52:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00370\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00370\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00370\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"sasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-06-28\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9942040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-04T05:25:24.000Z\",\"registered\":\"2019-06-04T05:25:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T02:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0057\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0057\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0057\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"sasasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933041400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-23T12:59:24.000Z\",\"registered\":\"2019-01-23T12:59:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-21T01:01:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-18T02:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123h\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123h\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Vanity Fair\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://beahan.name/domenic.treutel\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":335,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-31T21:41:43.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-18T01:01:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00356\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00356\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00356\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"tytytyty hjhjh\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018-08-24\",\"dateType\":\"Accepted\"},{\"date\":\"2017-04-01\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"},{\"rights\":\"aaaaaab jm jjjjjjjjjjjj opppppppppp\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9938841000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T10:54:22.000Z\",\"registered\":\"2019-04-18T10:54:23.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-17T22:00:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3030-53-3821\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3030-53-3821\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Precious Bane\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://schillermohr.com/theda_marks\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T21:25:18.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T21:32:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00368\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00368\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00368\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test4545455\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9940741400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-22T11:12:13.000Z\",\"registered\":\"2019-05-22T11:12:13.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-17T20:31:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"},{\"nameIdentifier\":\"WWW\",\"nameIdentifierScheme\":\"Wikidata\"}]}],\"titles\":[{\"title\":\"my doi test sand cont\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Adam, Omer\",\"nameType\":\"Personal\",\"givenName\":\"Omer\",\"familyName\":\"Adam\",\"contributorType\":\"Other\",\"nameIdentifiers\":[{\"nameIdentifier\":\"llll\",\"nameIdentifierScheme\":\"Library of Congress Name Authority File Number\"},{\"nameIdentifier\":\"VVV\",\"nameIdentifierScheme\":\"VIAF\"},{\"nameIdentifier\":\"pppp\",\"nameIdentifierScheme\":\"Pubmed author ID\"},{\"nameIdentifier\":\"ww\",\"nameIdentifierScheme\":\"Wikidata\"},{\"nameIdentifier\":\"pp\",\"nameIdentifierScheme\":\"Pivot ID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2016-05-04\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T20:57:27.000Z\",\"registered\":\"2019-04-18T20:57:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:31:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:01:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T01:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-16T22:03:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":95,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":83},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":35},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":67},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":42},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":60},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":70},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":70},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":4}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":70},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":5}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":70},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":12},{\"id\":\"test\",\"title\":\"Test\",\"count\":12},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":70},{\"id\":\"1\",\"title\":\"1\",\"count\":5}],\"linkChecksSchemaOrgId\":5,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":12},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":12},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":12},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":12},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":12},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":12},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":12},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":5},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":4},{\"id\":\"Karamela\",\"title\":\"Karamela\",\"count\":3},{\"id\":\"Music Composition\",\"title\":\"Music Composition\",\"count\":3},{\"id\":\"Music Education\",\"title\":\"Music Education\",\"count\":3},{\"id\":\"Musicology\",\"title\":\"Musicology\",\"count\":3},{\"id\":\"Architecture\",\"title\":\"Architecture\",\"count\":1},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":1}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" + "size": 66321, + "text": "{\"data\":[{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T05:31:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0034\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0034\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0034\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"test datacite sssssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[\"4568.5 kb\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-SA V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc-sa/4.0\"}],\"descriptions\":[{\"description\":\"my abstract description!\",\"descriptionType\":\"Abstract\"},{\"description\":\"cool methods\",\"descriptionType\":\"Methods\"},{\"description\":\"cool methods secont one\",\"descriptionType\":\"Methods\"},{\"description\":\"cool techinal info\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"additional or other???\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-15T09:11:24.000Z\",\"registered\":\"2020-04-06T08:46:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-03T09:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"gggg, aaaa\",\"nameType\":\"Personal\",\"givenName\":\"aaaa\",\"familyName\":\"gggg\",\"affiliation\":[]},{\"name\":\"My Group Author\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test group author\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"My Group 2\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-14T03:45:44.000Z\",\"registered\":\"2019-08-14T03:45:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0066\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0066\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0066\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"בהבסה\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08/0002-12\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"png\",\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T11:57:38.000Z\",\"registered\":\"2019-01-24T11:57:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T05:31:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cool_conf.0037\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cool_conf.0037\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cool_conf.0037\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearcherID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"ERA\"}]}],\"titles\":[{\"title\":\"Test url\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Conference abstract\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-16T16:41:22.000Z\",\"registered\":\"2019-01-16T16:53:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T04:31:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00357\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00357\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00357\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Lea Sweet\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Alzheimer's research & therapy\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-13T09:00:16.000Z\",\"registered\":\"2020-02-13T09:00:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-02T10:02:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0090\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0090\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0090\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"wqwqwqw\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Model\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-17T09:37:45.000Z\",\"registered\":\"2019-02-17T09:37:47.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T13:01:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/from_sand_datacite.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/from_sand_datacite.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/from_sand_datacite.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Bayandina, O. S\",\"nameType\":\"Personal\",\"givenName\":\"O. S\",\"familyName\":\"Bayandina\",\"affiliation\":[]},{\"name\":\"Alakoz, A. V\",\"nameType\":\"Personal\",\"givenName\":\"A. V\",\"familyName\":\"Alakoz\",\"affiliation\":[]},{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Val’tts, I. E\",\"nameType\":\"Personal\",\"givenName\":\"I. E\",\"familyName\":\"Val’tts\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Magnetic fields in methanol maser condensations based on data for related regions. Seven sources: Observational parameters\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-17T05:45:01.000Z\",\"registered\":\"2020-02-17T05:45:02.000Z\",\"published\":\"2013\",\"updated\":\"2020-05-01T12:02:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/10377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/10377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/10377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite subject\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-20T10:22:10.000Z\",\"registered\":\"2019-11-20T10:22:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T10:02:47.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0033\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0033\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0033\",\"identifierType\":\"DOI\"},{\"identifier\":\"1111-2222\",\"identifierType\":\"ISSN\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"TEST for Job - data cite - was existing333333333333\"}],\"publisher\":\"fsgs\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-14T10:33:23.000Z\",\"registered\":\"2019-02-13T11:54:32.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-30T10:31:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/06377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/06377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/06377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.5555/test.11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-19T12:32:09.000Z\",\"registered\":\"2019-11-19T12:32:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-29T09:00:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-29T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T13:34:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T13:34:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0064\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0064\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0064\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"geo\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"fgsfgsg\\nsgsgs\"},{\"geoLocationPlace\":\"gsgsg\\nsgsgsg\"}],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T08:39:07.000Z\",\"registered\":\"2019-01-24T08:39:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-28T09:01:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cw.00040\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cw.00040\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cw.00040\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Manevitz, Larry\",\"nameType\":\"Personal\",\"givenName\":\"Larry\",\"familyName\":\"Manevitz\",\"affiliation\":[]},{\"name\":\"Abbas, Emily Funny\",\"nameType\":\"Personal\",\"givenName\":\"Emily Funny\",\"familyName\":\"Abbas\",\"affiliation\":[\"University of Iowa Libraries, Nursing\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Dance1\"}],\"publisher\":\"University of Iowa Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"test type\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Closed\"},{\"rights\":\"Test copyright\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-23T16:16:43.000Z\",\"registered\":\"2019-05-23T16:16:44.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T05:32:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":96,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":84},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":36},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":68},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":43},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":71},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":71},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":3}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":71},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":38}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" }, "cookies": [], "headers": [ @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:19.251Z", - "time": 246, + "startedDateTime": "2020-05-04T16:40:47.039Z", + "time": 289, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 246 + "wait": 289 } } ], diff --git a/recordings/Acceptance-client_admin-user_3643385044/visiting-users_37556140/recording.har b/recordings/Acceptance-client_admin-user_3643385044/visiting-users_37556140/recording.har index a8120cbf3..aeca5470e 100644 --- a/recordings/Acceptance-client_admin-user_3643385044/visiting-users_37556140/recording.har +++ b/recordings/Acceptance-client_admin-user_3643385044/visiting-users_37556140/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | client_admin | user/visiting users", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,7 +67,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 8217, - "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":66889,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" + "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":67002,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" }, "cookies": [], "headers": [ @@ -86,8 +86,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:18.768Z", - "time": 116, + "startedDateTime": "2020-05-04T16:40:46.284Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -95,7 +95,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 116 + "wait": 146 } }, { @@ -127,11 +127,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 5996, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -150,8 +150,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:18.894Z", - "time": 91, + "startedDateTime": "2020-05-04T16:40:46.462Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -159,7 +159,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 102 } }, { @@ -186,11 +186,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -209,8 +209,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:19.067Z", - "time": 84, + "startedDateTime": "2020-05-04T16:40:46.822Z", + "time": 123, "timings": { "blocked": -1, "connect": -1, @@ -218,7 +218,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 123 } } ], diff --git a/recordings/Acceptance-consortium_admin-admin_2184421488/is-logged-in_3542225560/recording.har b/recordings/Acceptance-consortium_admin-admin_2184421488/is-logged-in_3542225560/recording.har index aca28f5df..2401c9ad9 100644 --- a/recordings/Acceptance-consortium_admin-admin_2184421488/is-logged-in_3542225560/recording.har +++ b/recordings/Acceptance-consortium_admin-admin_2184421488/is-logged-in_3542225560/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | admin/is logged in", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:19.715Z", - "time": 255, + "startedDateTime": "2020-05-04T16:40:47.559Z", + "time": 239, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 255 + "wait": 239 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:20.022Z", - "time": 136, + "startedDateTime": "2020-05-04T16:40:47.822Z", + "time": 125, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 125 } } ], diff --git a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-homepage_882376104/recording.har b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-homepage_882376104/recording.har index f24eb30b4..7a38ab329 100644 --- a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-homepage_882376104/recording.har +++ b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-homepage_882376104/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | admin/visiting homepage", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:20.802Z", - "time": 311, + "startedDateTime": "2020-05-04T16:40:48.281Z", + "time": 202, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 311 + "wait": 202 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:21.127Z", - "time": 117, + "startedDateTime": "2020-05-04T16:40:48.498Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 87 } } ], diff --git a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-info_3527359880/recording.har b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-info_3527359880/recording.har index 9bc1495b7..4cdcbac71 100644 --- a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-info_3527359880/recording.har +++ b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-info_3527359880/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | admin/visiting info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:21.648Z", - "time": 207, + "startedDateTime": "2020-05-04T16:40:48.922Z", + "time": 226, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 207 + "wait": 226 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:21.882Z", - "time": 117, + "startedDateTime": "2020-05-04T16:40:49.171Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 98 } } ], diff --git a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-prefixes_435827572/recording.har b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-prefixes_435827572/recording.har index 61e20966e..4b0c81365 100644 --- a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-prefixes_435827572/recording.har +++ b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-prefixes_435827572/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | admin/visiting prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -75,11 +75,11 @@ "url": "https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 30811, + "bodySize": 28695, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30811, - "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1978},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":289},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":300},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":283},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":165},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":158},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":131},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":129},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":120},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":93},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":64},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":55},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":54},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":53},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":51},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":38}],\"clients\":[{\"id\":\"cdl.ual\",\"title\":\"University of Alberta Libraries\",\"count\":13},{\"id\":\"tib.kisti\",\"title\":\"Korea Institute of Science and Technology Information\",\"count\":9},{\"id\":\"bl.imperial\",\"title\":\"Imperial College London\",\"count\":6},{\"id\":\"cdl.ucsd\",\"title\":\"UCSD\",\"count\":5},{\"id\":\"inist.ifremer\",\"title\":\"Institut Français de Recherche pour l'Exploitation de la Mer\",\"count\":5},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":4},{\"id\":\"ands.centre-8\",\"title\":\"CSIRO\",\"count\":3},{\"id\":\"ands.centre14\",\"title\":\"Australian National Data Service\",\"count\":3},{\"id\":\"bibtag.test\",\"title\":\"Workshop Test Account\",\"count\":3},{\"id\":\"bl.lincoln\",\"title\":\"University of Lincoln\",\"count\":3},{\"id\":\"bl.old-api\",\"title\":\"BL's DOI service prototype\",\"count\":3},{\"id\":\"dk.dc\",\"title\":\"DTIC Test Datacenter\",\"count\":3},{\"id\":\"nrct.db1\",\"title\":\"NRCT Data Center\",\"count\":3},{\"id\":\"purdue.ezid\",\"title\":\"PURDUE EZID\",\"count\":3},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" + "size": 28695, + "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1988},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":288},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -98,8 +98,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:24.319Z", - "time": 295, + "startedDateTime": "2020-05-04T16:40:51.590Z", + "time": 331, "timings": { "blocked": -1, "connect": -1, @@ -107,7 +107,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 295 + "wait": 331 } }, { @@ -139,11 +139,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -162,8 +162,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:24.634Z", - "time": 247, + "startedDateTime": "2020-05-04T16:40:51.938Z", + "time": 208, "timings": { "blocked": -1, "connect": -1, @@ -171,7 +171,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 247 + "wait": 208 } }, { @@ -246,11 +246,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -269,8 +269,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:24.895Z", - "time": 113, + "startedDateTime": "2020-05-04T16:40:52.159Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -278,7 +278,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 113 + "wait": 90 } } ], diff --git a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-providers_1061836054/recording.har b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-providers_1061836054/recording.har index 5c0159fd8..9bbcaaefc 100644 --- a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-providers_1061836054/recording.har +++ b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-providers_1061836054/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | admin/visiting providers", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -83,11 +83,11 @@ "url": "https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 38580, + "bodySize": 39345, "content": { "mimeType": "application/json; charset=utf-8", - "size": 38580, - "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-03-19T05:10:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}},{\"id\":\"brown\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brown University Library\",\"displayName\":\"Brown University Library\",\"symbol\":\"BROWN\",\"website\":\"https://library.brown.edu/\",\"systemEmail\":\"bdr@brown.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05gq02987\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-05-31T13:54:32.000Z\",\"updated\":\"2019-08-13T14:29:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70139\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":408,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":123},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":243},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":141},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":8},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":401},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 39345, + "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-05-04T03:08:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"ardcanu\",\"type\":\"providers\"},{\"id\":\"jbtest\",\"type\":\"providers\"},{\"id\":\"uc\",\"type\":\"providers\"},{\"id\":\"jbtestwo\",\"type\":\"providers\"},{\"id\":\"jbthree\",\"type\":\"providers\"},{\"id\":\"ardcliz\",\"type\":\"providers\"},{\"id\":\"jbfive\",\"type\":\"providers\"},{\"id\":\"lwone\",\"type\":\"providers\"},{\"id\":\"lwardct\",\"type\":\"providers\"},{\"id\":\"tardc\",\"type\":\"providers\"},{\"id\":\"tcdu\",\"type\":\"providers\"},{\"id\":\"tunsw\",\"type\":\"providers\"},{\"id\":\"tjcu\",\"type\":\"providers\"},{\"id\":\"tlatrobe\",\"type\":\"providers\"},{\"id\":\"taad\",\"type\":\"providers\"},{\"id\":\"tuwa\",\"type\":\"providers\"},{\"id\":\"tcsiro\",\"type\":\"providers\"},{\"id\":\"tmonash\",\"type\":\"providers\"},{\"id\":\"tala\",\"type\":\"providers\"},{\"id\":\"tanu\",\"type\":\"providers\"},{\"id\":\"tdpaw\",\"type\":\"providers\"},{\"id\":\"taic\",\"type\":\"providers\"},{\"id\":\"tansto\",\"type\":\"providers\"},{\"id\":\"tnti\",\"type\":\"providers\"}]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"lwardct\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons LWTEST\",\"displayName\":\"Australian Research Data Commons LWTEST\",\"symbol\":\"LWARDCT\",\"website\":null,\"systemEmail\":\"liz.woods@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-29T04:22:26.000Z\",\"updated\":\"2020-04-29T04:25:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":439,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":135},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":125},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":245},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":170},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":9},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":432},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -106,8 +106,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:22.562Z", - "time": 138, + "startedDateTime": "2020-05-04T16:40:49.717Z", + "time": 130, "timings": { "blocked": -1, "connect": -1, @@ -115,7 +115,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 130 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:22.724Z", - "time": 222, + "startedDateTime": "2020-05-04T16:40:49.900Z", + "time": 192, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 222 + "wait": 192 } }, { @@ -254,11 +254,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -277,8 +277,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:22.959Z", - "time": 106, + "startedDateTime": "2020-05-04T16:40:50.108Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -286,7 +286,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 105 } } ], diff --git a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-repositories_601244364/recording.har b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-repositories_601244364/recording.har index d537d547e..9c60315d0 100644 --- a/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-repositories_601244364/recording.har +++ b/recordings/Acceptance-consortium_admin-admin_2184421488/visiting-repositories_601244364/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | admin/visiting repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -87,11 +87,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 132870, + "bodySize": 126599, "content": { "mimeType": "application/json; charset=utf-8", - "size": 132870, - "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":\"## I am a repository\\n\\n- one repo\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-03-12T10:05:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-03-24T09:39:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ethz.test\",\"type\":\"clients\"},{\"id\":\"ethz.e-coll\",\"type\":\"clients\"},{\"id\":\"ethz.seals\",\"type\":\"clients\"},{\"id\":\"ethz.dodis\",\"type\":\"clients\"},{\"id\":\"ethz.ar\",\"type\":\"clients\"},{\"id\":\"ethz.uzh-al\",\"type\":\"clients\"},{\"id\":\"ethz.corssa\",\"type\":\"clients\"},{\"id\":\"ethz.jroi\",\"type\":\"clients\"},{\"id\":\"ethz.unibas\",\"type\":\"clients\"},{\"id\":\"ethz.wgms\",\"type\":\"clients\"},{\"id\":\"ethz.ids-lu\",\"type\":\"clients\"},{\"id\":\"ethz.lives\",\"type\":\"clients\"},{\"id\":\"ethz.epfl\",\"type\":\"clients\"},{\"id\":\"ethz.da-rd\",\"type\":\"clients\"},{\"id\":\"ethz.e-manus\",\"type\":\"clients\"},{\"id\":\"ethz.ubasojs\",\"type\":\"clients\"},{\"id\":\"ethz.ma\",\"type\":\"clients\"},{\"id\":\"ethz.bopalt\",\"type\":\"clients\"},{\"id\":\"ethz.zora\",\"type\":\"clients\"},{\"id\":\"ethz.ecodices\",\"type\":\"clients\"},{\"id\":\"ethz.sed\",\"type\":\"clients\"},{\"id\":\"ethz.e-rara\",\"type\":\"clients\"},{\"id\":\"ethz.li\",\"type\":\"clients\"},{\"id\":\"ethz.dmm\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ad\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ba\",\"type\":\"clients\"},{\"id\":\"ethz.smif\",\"type\":\"clients\"},{\"id\":\"ethz.lo\",\"type\":\"clients\"},{\"id\":\"ethz.fsw\",\"type\":\"clients\"},{\"id\":\"ethz.itis\",\"type\":\"clients\"},{\"id\":\"ethz.infoclio\",\"type\":\"clients\"},{\"id\":\"ethz.boris\",\"type\":\"clients\"},{\"id\":\"ethz.bopitw\",\"type\":\"clients\"},{\"id\":\"ethz.wsl\",\"type\":\"clients\"},{\"id\":\"ethz.iumsppub\",\"type\":\"clients\"},{\"id\":\"ethz.iumspdat\",\"type\":\"clients\"},{\"id\":\"ethz.rfre\",\"type\":\"clients\"},{\"id\":\"ethz.phsg\",\"type\":\"clients\"},{\"id\":\"ethz.bopjemr\",\"type\":\"clients\"},{\"id\":\"ethz.permos\",\"type\":\"clients\"},{\"id\":\"ethz.epics3\",\"type\":\"clients\"},{\"id\":\"ethz.inblog\",\"type\":\"clients\"},{\"id\":\"ethz.hopepsy\",\"type\":\"clients\"},{\"id\":\"ethz.zhaw\",\"type\":\"clients\"},{\"id\":\"ethz.ms\",\"type\":\"clients\"},{\"id\":\"ethz.ubemo\",\"type\":\"clients\"},{\"id\":\"ethz.epics-bs\",\"type\":\"clients\"},{\"id\":\"ethz.hopesui\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ki\",\"type\":\"clients\"},{\"id\":\"ethz.epics-st\",\"type\":\"clients\"},{\"id\":\"ethz.soz\",\"type\":\"clients\"},{\"id\":\"ethz.wsllfi\",\"type\":\"clients\"},{\"id\":\"ethz.bopinfo\",\"type\":\"clients\"},{\"id\":\"ethz.dodisint\",\"type\":\"clients\"},{\"id\":\"ethz.hes\",\"type\":\"clients\"},{\"id\":\"ethz.marvel\",\"type\":\"clients\"},{\"id\":\"ethz.historiaiuris\",\"type\":\"clients\"},{\"id\":\"ethz.agroscope\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3929\",\"type\":\"prefixes\"},{\"id\":\"10.3930\",\"type\":\"prefixes\"},{\"id\":\"10.3931\",\"type\":\"prefixes\"},{\"id\":\"10.3932\",\"type\":\"prefixes\"},{\"id\":\"10.3933\",\"type\":\"prefixes\"},{\"id\":\"10.5075\",\"type\":\"prefixes\"},{\"id\":\"10.5076\",\"type\":\"prefixes\"},{\"id\":\"10.5078\",\"type\":\"prefixes\"},{\"id\":\"10.5079\",\"type\":\"prefixes\"},{\"id\":\"10.5166\",\"type\":\"prefixes\"},{\"id\":\"10.5167\",\"type\":\"prefixes\"},{\"id\":\"10.5169\",\"type\":\"prefixes\"},{\"id\":\"10.5170\",\"type\":\"prefixes\"},{\"id\":\"10.5448\",\"type\":\"prefixes\"},{\"id\":\"10.5449\",\"type\":\"prefixes\"},{\"id\":\"10.5450\",\"type\":\"prefixes\"},{\"id\":\"10.5451\",\"type\":\"prefixes\"},{\"id\":\"10.5452\",\"type\":\"prefixes\"},{\"id\":\"10.5168\",\"type\":\"prefixes\"},{\"id\":\"10.5903\",\"type\":\"prefixes\"},{\"id\":\"10.5904\",\"type\":\"prefixes\"},{\"id\":\"10.5905\",\"type\":\"prefixes\"},{\"id\":\"10.5906\",\"type\":\"prefixes\"},{\"id\":\"10.5907\",\"type\":\"prefixes\"},{\"id\":\"10.12682\",\"type\":\"prefixes\"},{\"id\":\"10.12683\",\"type\":\"prefixes\"},{\"id\":\"10.12684\",\"type\":\"prefixes\"},{\"id\":\"10.12685\",\"type\":\"prefixes\"},{\"id\":\"10.12686\",\"type\":\"prefixes\"},{\"id\":\"10.7890\",\"type\":\"prefixes\"},{\"id\":\"10.7891\",\"type\":\"prefixes\"},{\"id\":\"10.7894\",\"type\":\"prefixes\"},{\"id\":\"10.7892\",\"type\":\"prefixes\"},{\"id\":\"10.13097\",\"type\":\"prefixes\"},{\"id\":\"10.13096\",\"type\":\"prefixes\"},{\"id\":\"10.13100\",\"type\":\"prefixes\"},{\"id\":\"10.13099\",\"type\":\"prefixes\"},{\"id\":\"10.13098\",\"type\":\"prefixes\"},{\"id\":\"10.13093\",\"type\":\"prefixes\"},{\"id\":\"10.13092\",\"type\":\"prefixes\"},{\"id\":\"10.13095\",\"type\":\"prefixes\"},{\"id\":\"10.13094\",\"type\":\"prefixes\"},{\"id\":\"10.13091\",\"type\":\"prefixes\"},{\"id\":\"10.16909\",\"type\":\"prefixes\"},{\"id\":\"10.16908\",\"type\":\"prefixes\"},{\"id\":\"10.16907\",\"type\":\"prefixes\"},{\"id\":\"10.16906\",\"type\":\"prefixes\"},{\"id\":\"10.16905\",\"type\":\"prefixes\"},{\"id\":\"10.16904\",\"type\":\"prefixes\"},{\"id\":\"10.16903\",\"type\":\"prefixes\"},{\"id\":\"10.16902\",\"type\":\"prefixes\"},{\"id\":\"10.16911\",\"type\":\"prefixes\"},{\"id\":\"10.16910\",\"type\":\"prefixes\"},{\"id\":\"10.18749\",\"type\":\"prefixes\"},{\"id\":\"10.18748\",\"type\":\"prefixes\"},{\"id\":\"10.18747\",\"type\":\"prefixes\"},{\"id\":\"10.18752\",\"type\":\"prefixes\"},{\"id\":\"10.18753\",\"type\":\"prefixes\"},{\"id\":\"10.18750\",\"type\":\"prefixes\"},{\"id\":\"10.18751\",\"type\":\"prefixes\"},{\"id\":\"10.18756\",\"type\":\"prefixes\"},{\"id\":\"10.18754\",\"type\":\"prefixes\"},{\"id\":\"10.18755\",\"type\":\"prefixes\"},{\"id\":\"10.21258\",\"type\":\"prefixes\"},{\"id\":\"10.21257\",\"type\":\"prefixes\"},{\"id\":\"10.21256\",\"type\":\"prefixes\"},{\"id\":\"10.21255\",\"type\":\"prefixes\"},{\"id\":\"10.21259\",\"type\":\"prefixes\"},{\"id\":\"10.21260\",\"type\":\"prefixes\"},{\"id\":\"10.21261\",\"type\":\"prefixes\"},{\"id\":\"10.21263\",\"type\":\"prefixes\"},{\"id\":\"10.21262\",\"type\":\"prefixes\"},{\"id\":\"10.21264\",\"type\":\"prefixes\"},{\"id\":\"10.22019\",\"type\":\"prefixes\"},{\"id\":\"10.22018\",\"type\":\"prefixes\"},{\"id\":\"10.22013\",\"type\":\"prefixes\"},{\"id\":\"10.22012\",\"type\":\"prefixes\"},{\"id\":\"10.22015\",\"type\":\"prefixes\"},{\"id\":\"10.22014\",\"type\":\"prefixes\"},{\"id\":\"10.22016\",\"type\":\"prefixes\"},{\"id\":\"10.22009\",\"type\":\"prefixes\"},{\"id\":\"10.26039\",\"type\":\"prefixes\"},{\"id\":\"10.24435\",\"type\":\"prefixes\"},{\"id\":\"10.24434\",\"type\":\"prefixes\"},{\"id\":\"10.24437\",\"type\":\"prefixes\"},{\"id\":\"10.24439\",\"type\":\"prefixes\"},{\"id\":\"10.24442\",\"type\":\"prefixes\"},{\"id\":\"10.24445\",\"type\":\"prefixes\"},{\"id\":\"10.24452\",\"type\":\"prefixes\"},{\"id\":\"10.26032\",\"type\":\"prefixes\"},{\"id\":\"10.26035\",\"type\":\"prefixes\"},{\"id\":\"10.26037\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2098,\"totalPages\":84,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":183},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":232},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":147},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":119},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":115},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":93},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":59},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":59},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":55},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":53},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":47},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":46},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":43},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":41}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2040},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":68},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":23},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":16},{\"id\":\"other\",\"title\":\"Other\",\"count\":13},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":9},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":16},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":14},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1},{\"id\":\"islandora\",\"title\":\"Islandora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" + "size": 126599, + "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-04-24T04:50:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-04-28T12:27:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2120,\"totalPages\":85,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":205},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":null,\"count\":252},{\"id\":\"cdl\",\"title\":null,\"count\":232},{\"id\":\"bl\",\"title\":null,\"count\":147},{\"id\":\"inist\",\"title\":null,\"count\":120},{\"id\":\"ands\",\"title\":null,\"count\":115},{\"id\":\"gesis\",\"title\":null,\"count\":93},{\"id\":\"datacite\",\"title\":null,\"count\":62},{\"id\":\"ethz\",\"title\":null,\"count\":59},{\"id\":\"mtakik\",\"title\":null,\"count\":59},{\"id\":\"osti\",\"title\":null,\"count\":55}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2062},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":71},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":24},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":18},{\"id\":\"other\",\"title\":\"Other\",\"count\":14},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":10},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":17},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":17},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -110,8 +110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:23.379Z", - "time": 183, + "startedDateTime": "2020-05-04T16:40:50.697Z", + "time": 167, "timings": { "blocked": -1, "connect": -1, @@ -119,7 +119,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 183 + "wait": 167 } }, { @@ -151,11 +151,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -174,8 +174,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:23.583Z", - "time": 227, + "startedDateTime": "2020-05-04T16:40:50.931Z", + "time": 220, "timings": { "blocked": -1, "connect": -1, @@ -183,7 +183,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 227 + "wait": 220 } }, { @@ -258,11 +258,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -281,8 +281,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:23.835Z", - "time": 119, + "startedDateTime": "2020-05-04T16:40:51.170Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -290,7 +290,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 94 } } ], diff --git a/recordings/Acceptance-consortium_admin-doi_604772299/visiting-dois_3774702605/recording.har b/recordings/Acceptance-consortium_admin-doi_604772299/visiting-dois_3774702605/recording.har index 65526eecf..ab4cbfa5a 100644 --- a/recordings/Acceptance-consortium_admin-doi_604772299/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-consortium_admin-doi_604772299/visiting-dois_3774702605/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | doi/visiting dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -119,11 +119,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 83895, + "bodySize": 80864, "content": { "mimeType": "application/json; charset=utf-8", - "size": 83895, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813559\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:41.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:40.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842813\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842811\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813557\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:36.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:33.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813555\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:28.000Z\",\"registered\":\"2020-04-23T07:10:29.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:24.000Z\",\"registered\":\"2020-04-23T07:10:24.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842809\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842807\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:23.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:22.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813549\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:20.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842803\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813547\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813547\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813547\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"Mechanical Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/_/2813547\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":false,\"state\":\"registered\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:15.000Z\",\"registered\":\"2020-04-23T07:10:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.5258/soton/1560\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5258/soton/1560\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5258/soton/1560/\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Binney, Heather\",\"nameType\":\"Personal\",\"givenName\":\"Heather\",\"familyName\":\"Binney\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"en-us\",\"title\":\"Title changed Vegetation of Eurasia from the last glacial maximum to the present: the pollen data\"}],\"publisher\":\"University of Southampton\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"1900/2013\",\"dateType\":\"Collected\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-us\",\"description\":\"This dataset details the pollen data used in the production of the biome vegetation maps shown in the published paper. The results of the biomization results of the pollen data is included.Adding in more information as required by testing\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://eprints.soton.ac.uk/1559/test\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-12T16:59:12.000Z\",\"registered\":\"2019-02-12T16:59:13.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:02:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.soton\",\"type\":\"clients\"}}}},{\"id\":\"10.24378/exe.7\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24378/exe.7\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24378/exe.7\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Desair, Tom\",\"nameType\":\"Personal\",\"givenName\":\"Tom\",\"familyName\":\"Desair\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Atmire Test Submission\"}],\"publisher\":\"Test\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]},{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Other\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Test\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://oredev03.exeter.ac.uk/repository/handle/10871/30993\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-02-26T15:50:28.000Z\",\"registered\":\"2018-03-01T16:00:40.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.exeter\",\"type\":\"clients\"}}}},{\"id\":\"10.14288/1.0043659\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14288/1.0043659\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14288/1.0043659\",\"identifierType\":\"DOI\"}],\"creators\":[],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"error\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://api.datacite.org/dois/10.14288/1.0043659\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-18T13:48:46.000Z\",\"registered\":\"2018-12-18T13:48:55.000Z\",\"published\":\"\",\"updated\":\"2020-04-23T07:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cisti.ubc\",\"type\":\"clients\"}}}},{\"id\":\"10.80066/1nfy-1g91\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80066/1nfy-1g91\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80066/1nfy-1g91\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"CNRST\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Formation Test\"}],\"publisher\":\"IMIST\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceTypeGeneral\":\"DataPaper\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-29T11:41:51.000Z\",\"registered\":\"2019-11-29T12:17:34.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cnrst.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21338/2019.00001\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21338/2019.00001\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21338/2019.00001\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test dataset\"}],\"publisher\":\"NIRD Storage\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Natural sciences\"},{\"subject\":\"Earth science\"},{\"subject\":\"Environmental science\"}],\"contributors\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"contributorType\":\"Other\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2020-01-17\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Simulation, Raw\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://co2datashare.org/dataset/sleipner-4d-seismic-dataset\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-17T14:19:20.000Z\",\"registered\":\"2020-01-17T14:19:21.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bibsys.uninett\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite808\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T05:01:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"figshare.dud\",\"type\":\"clients\",\"attributes\":{\"name\":\"figshare DUD datacenter\",\"symbol\":\"FIGSHARE.DUD\",\"year\":2016,\"contactEmail\":\"danielduduta@figshare.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"figsh.com,dhs-publicaccess.st.dhs.gov,figsh.us,figshare.us\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-07-20T08:29:35.000Z\",\"updated\":\"2019-11-13T13:51:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"figshare\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.soton\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Southampton\",\"symbol\":\"BL.SOTON\",\"year\":2012,\"contactEmail\":\"I.A.Stark@soton.ac.uk\",\"alternateName\":null,\"description\":\"ePrints Soton is the University's Research Repository. It contains journal articles, books, PhD theses, conference papers, data, reports, working papers, art exhibitions and more. Where possible, journal articles and conference proceedings are uploaded into ePrints and made open access.\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"soton.ac.uk,worldpop.org.uk\",\"re3data\":\"https://doi.org/10.17616/R3H05B\",\"opendoar\":null,\"issn\":null,\"url\":\"https://eprints.soton.ac.uk/\",\"created\":\"2012-10-03T16:00:24.000Z\",\"updated\":\"2018-11-24T18:40:59.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.exeter\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Exeter\",\"symbol\":\"BL.EXETER\",\"year\":2016,\"contactEmail\":\"P.Liebetrau@exeter.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"exeter.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-06-22T13:23:03.000Z\",\"updated\":\"2018-08-26T01:30:58.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cisti.ubc\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of British Columbia\",\"symbol\":\"CISTI.UBC\",\"year\":2015,\"contactEmail\":\"eugene.barsky@ubc.ca\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"ubc.ca\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2015-08-04T20:15:03.000Z\",\"updated\":\"2019-01-24T01:24:35.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cisti\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cnrst.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Test IMIST\",\"symbol\":\"CNRST.TEST\",\"year\":2019,\"contactEmail\":\"ayssi@imist.ma\",\"alternateName\":null,\"description\":null,\"language\":[\"fr\"],\"clientType\":\"periodical\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"created\":\"2019-11-29T11:12:15.000Z\",\"updated\":\"2019-12-10T10:20:02.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cnrst\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bibsys.uninett\",\"type\":\"clients\",\"attributes\":{\"name\":\"UNINETT Sigma AS, Norway\",\"symbol\":\"BIBSYS.UNINETT\",\"year\":2016,\"contactEmail\":\"maria.iozzi@uninett.no\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"norstore.no\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-04-20T09:04:56.000Z\",\"updated\":\"2019-11-04T10:58:20.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bibsys\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1336099,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1145128},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":112180},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":78791}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":876597},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":151536},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":94592},{\"id\":\"other\",\"title\":\"Other\",\"count\":72569},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12051},{\"id\":\"software\",\"title\":\"Software\",\"count\":7350},{\"id\":\"image\",\"title\":\"Image\",\"count\":7258},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4509},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":670},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":644},{\"id\":\"service\",\"title\":\"Service\",\"count\":116},{\"id\":\"event\",\"title\":\"Event\",\"count\":88},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":77},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52},{\"id\":\"model\",\"title\":\"Model\",\"count\":39}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":252942},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007650},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":2002},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":2},{\"id\":\"2050\",\"title\":\"2050\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":17},{\"id\":\"2024\",\"title\":\"2024\",\"count\":24},{\"id\":\"2023\",\"title\":\"2023\",\"count\":30},{\"id\":\"2022\",\"title\":\"2022\",\"count\":41},{\"id\":\"2021\",\"title\":\"2021\",\"count\":81},{\"id\":\"2020\",\"title\":\"2020\",\"count\":131327},{\"id\":\"2019\",\"title\":\"2019\",\"count\":340886},{\"id\":\"2018\",\"title\":\"2018\",\"count\":83114},{\"id\":\"2017\",\"title\":\"2017\",\"count\":38031},{\"id\":\"2016\",\"title\":\"2016\",\"count\":34300},{\"id\":\"2015\",\"title\":\"2015\",\"count\":33232},{\"id\":\"2014\",\"title\":\"2014\",\"count\":35329},{\"id\":\"2013\",\"title\":\"2013\",\"count\":105363},{\"id\":\"2012\",\"title\":\"2012\",\"count\":174834},{\"id\":\"2011\",\"title\":\"2011\",\"count\":40726},{\"id\":\"2010\",\"title\":\"2010\",\"count\":19844},{\"id\":\"2009\",\"title\":\"2009\",\"count\":18733},{\"id\":\"2008\",\"title\":\"2008\",\"count\":21207},{\"id\":\"2007\",\"title\":\"2007\",\"count\":15612},{\"id\":\"2006\",\"title\":\"2006\",\"count\":13393},{\"id\":\"2005\",\"title\":\"2005\",\"count\":10482},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14834},{\"id\":\"2003\",\"title\":\"2003\",\"count\":11372},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13503},{\"id\":\"2001\",\"title\":\"2001\",\"count\":9221},{\"id\":\"2000\",\"title\":\"2000\",\"count\":10544},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7398},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5554},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7325},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4227},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3704},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3153},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3198},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2734},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2543},{\"id\":\"1990\",\"title\":\"1990\",\"count\":3026},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1695},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1638},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1825},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1907},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1667},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1464},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1587},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1395},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1191},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4636},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1056},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1010},{\"id\":\"1977\",\"title\":\"1977\",\"count\":934},{\"id\":\"1976\",\"title\":\"1976\",\"count\":885},{\"id\":\"1975\",\"title\":\"1975\",\"count\":827},{\"id\":\"1974\",\"title\":\"1974\",\"count\":886},{\"id\":\"1973\",\"title\":\"1973\",\"count\":756},{\"id\":\"1972\",\"title\":\"1972\",\"count\":712},{\"id\":\"1971\",\"title\":\"1971\",\"count\":702},{\"id\":\"1970\",\"title\":\"1970\",\"count\":589},{\"id\":\"1969\",\"title\":\"1969\",\"count\":652},{\"id\":\"1968\",\"title\":\"1968\",\"count\":509},{\"id\":\"1967\",\"title\":\"1967\",\"count\":734},{\"id\":\"1966\",\"title\":\"1966\",\"count\":546},{\"id\":\"1965\",\"title\":\"1965\",\"count\":559},{\"id\":\"1964\",\"title\":\"1964\",\"count\":506},{\"id\":\"1963\",\"title\":\"1963\",\"count\":434},{\"id\":\"1962\",\"title\":\"1962\",\"count\":466},{\"id\":\"1961\",\"title\":\"1961\",\"count\":385},{\"id\":\"1960\",\"title\":\"1960\",\"count\":354},{\"id\":\"1959\",\"title\":\"1959\",\"count\":326},{\"id\":\"1958\",\"title\":\"1958\",\"count\":347},{\"id\":\"1957\",\"title\":\"1957\",\"count\":360},{\"id\":\"1956\",\"title\":\"1956\",\"count\":283},{\"id\":\"1955\",\"title\":\"1955\",\"count\":259},{\"id\":\"1954\",\"title\":\"1954\",\"count\":414},{\"id\":\"1953\",\"title\":\"1953\",\"count\":215},{\"id\":\"1952\",\"title\":\"1952\",\"count\":194},{\"id\":\"1951\",\"title\":\"1951\",\"count\":259},{\"id\":\"1950\",\"title\":\"1950\",\"count\":207},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":186},{\"id\":\"1947\",\"title\":\"1947\",\"count\":123},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":74},{\"id\":\"1944\",\"title\":\"1944\",\"count\":138},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":67},{\"id\":\"1938\",\"title\":\"1938\",\"count\":129},{\"id\":\"1937\",\"title\":\"1937\",\"count\":78},{\"id\":\"1936\",\"title\":\"1936\",\"count\":118},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":135},{\"id\":\"1933\",\"title\":\"1933\",\"count\":298},{\"id\":\"1932\",\"title\":\"1932\",\"count\":251},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":163},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":250},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":55},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":46},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":179},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":40},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":66},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":62},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":32},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":44},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":26},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":52},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":40},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1792\",\"title\":\"1792\",\"count\":1},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1451\",\"title\":\"1451\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":125218},{\"id\":\"2019\",\"title\":\"2019\",\"count\":279219},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38269},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1658},{\"id\":\"2016\",\"title\":\"2016\",\"count\":129},{\"id\":\"2015\",\"title\":\"2015\",\"count\":72},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803750},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":172887},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":61851},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":40568},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":34769},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27727},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":20315},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":19320},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15109},{\"id\":\"gdcc\",\"title\":\"The Global Dataverse Community Consortium (GDCC)\",\"count\":12041},{\"id\":\"gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":10308},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":9580},{\"id\":\"pitp\",\"title\":\"Perimeter Institute for Theoretical Physics\",\"count\":8382},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":7974}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803750},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":172887},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27564},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":25487},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24798},{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17459},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17295},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15031},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13192},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"gbif.gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":10307},{\"id\":\"gdcc.harvard-test\",\"title\":\"Harvard Dataverse Test Account\",\"count\":9520},{\"id\":\"pitp.pirsa\",\"title\":\"Perimeter Institute\",\"count\":8382}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8379},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/05cc98565\",\"title\":\"Bank of Canada\",\"count\":178},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":98},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":92},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":26},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":25},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":19},{\"id\":\"ror.org/00za53h95\",\"title\":\"Johns Hopkins University\",\"count\":12},{\"id\":\"ror.org/00qnfvz68\",\"title\":\"Open Society Foundations\",\"count\":6},{\"id\":\"ror.org/03zbnzt98\",\"title\":\"Woods Hole Oceanographic Institution\",\"count\":4},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/04d8ztx87\",\"title\":\"Agroscope\",\"count\":3},{\"id\":\"ror.org/05591te55\",\"title\":\"Ludwig Maximilian University of Munich\",\"count\":3}],\"prefixes\":[{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":172887},{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130738},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58818},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56676},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34961},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27564},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20720},{\"id\":\"10.17863\",\"title\":\"10.17863\",\"count\":19592},{\"id\":\"10.1038\",\"title\":\"10.1038\",\"count\":19569},{\"id\":\"10.33520\",\"title\":\"10.33520\",\"count\":19361},{\"id\":\"10.1093\",\"title\":\"10.1093\",\"count\":18334},{\"id\":\"10.3390\",\"title\":\"10.3390\",\"count\":18301}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2891},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":713}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1045354},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":9331},{\"id\":\"4.3\",\"title\":\"Schema 4.3\",\"count\":13},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":12},{\"id\":\"2.1\",\"title\":\"Schema 2.1\",\"count\":2},{\"id\":\"2.3\",\"title\":\"Schema 2.3\",\"count\":1},{\"id\":\"metadata version 4\",\"title\":\"Schema metadata version 4\",\"count\":1}],\"sources\":[{\"id\":\"levriero\",\"title\":\"Levriero\",\"count\":803750},{\"id\":\"mds\",\"title\":\"Mds\",\"count\":380943},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":23690},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":2698},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":551},{\"id\":\"test\",\"title\":\"Test\",\"count\":21},{\"id\":\"Elettra\",\"title\":\"Elettra\",\"count\":5},{\"id\":\"MCX\",\"title\":\"Mcx\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":24493},{\"id\":\"404\",\"title\":\"404\",\"count\":3347},{\"id\":\"403\",\"title\":\"403\",\"count\":977},{\"id\":\"401\",\"title\":\"401\",\"count\":284},{\"id\":\"500\",\"title\":\"500\",\"count\":279},{\"id\":\"503\",\"title\":\"503\",\"count\":144},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":11},{\"id\":\"502\",\"title\":\"502\",\"count\":2}],\"linksChecked\":880,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":65476},{\"id\":\"1\",\"title\":\"1\",\"count\":3898}],\"linkChecksSchemaOrgId\":1647,\"linkChecksDcIdentifier\":4751,\"linkChecksCitationDoi\":5,\"subjects\":[{\"id\":\"Anatomy\",\"title\":\"Anatomy\",\"count\":70282},{\"id\":\"80505 Web Technologies (excl. Web Search)\",\"title\":\"80505 Web Technologies (Excl. Web Search)\",\"count\":57738},{\"id\":\"Cat\",\"title\":\"Cat\",\"count\":19371},{\"id\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, etc.)\",\"title\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, Etc.)\",\"count\":11946},{\"id\":\"biodiversity\",\"title\":\"Biodiversity\",\"count\":5717},{\"id\":\"GBIF\",\"title\":\"Gbif\",\"count\":5708},{\"id\":\"species occurrences\",\"title\":\"Species Occurrences\",\"count\":5708},{\"id\":\"Disparities\",\"title\":\"Disparities\",\"count\":5457},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":4580},{\"id\":\"Paleoecology\",\"title\":\"Paleoecology\",\"count\":4522},{\"id\":\"Cosmology\",\"title\":\"Cosmology\",\"count\":4179},{\"id\":\"60101 Analytical Biochemistry\",\"title\":\"60101 Analytical Biochemistry\",\"count\":3495},{\"id\":\"Natural Sciences - Mathematics (1.1)\",\"title\":\"Natural Sciences Mathematics (1.1)\",\"count\":3467},{\"id\":\"80101 Adaptive Agents and Intelligent Robotics\",\"title\":\"80101 Adaptive Agents And Intelligent Robotics\",\"count\":3462},{\"id\":\"Research\",\"title\":\"Research\",\"count\":3431}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 80864, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/2nrlcf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/2nrlcf\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1982-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/2NRLCF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/1aoley\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/1aoley\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/1AOLEY\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1982)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/2nrlcf\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/1aoley\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK27HBR5F\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:26.000Z\",\"registered\":\"2020-05-04T16:06:28.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1981)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/5msoef\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/isjqad\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2EFULDR\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:14.000Z\",\"registered\":\"2020-05-04T16:06:16.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/isjqad\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/isjqad\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/ISJQAD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:19.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/5msoef\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/5msoef\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1981-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/5MSOEF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:18.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1978)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/xe1f9t\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/norj5n\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK21CFLYG\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:01.000Z\",\"registered\":\"2020-05-04T16:06:02.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/norj5n\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/norj5n\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/NORJ5N\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.cdsp\",\"type\":\"clients\",\"attributes\":{\"name\":\"Centre de données socio-politiques\",\"symbol\":\"INIST.CDSP\",\"year\":2016,\"contactEmail\":\"genevieve.michaud@sciencespo.fr\",\"alternateName\":null,\"description\":\"Center for socio-political data (CNRS & Sciences Po)\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"dataspire-test.sciencespo.fr,cdsp.sciences-po.fr,sciences-po.fr,bequali.fr\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://cdsp.sciences-po.fr/en/\",\"created\":\"2016-08-30T14:13:09.000Z\",\"updated\":\"2019-11-14T10:13:57.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1353064,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1146112},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":115757},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":91195}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":877168},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":154442},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":95321},{\"id\":\"other\",\"title\":\"Other\",\"count\":81907},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12069},{\"id\":\"software\",\"title\":\"Software\",\"count\":7382},{\"id\":\"image\",\"title\":\"Image\",\"count\":7295},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4511},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":680},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":671},{\"id\":\"service\",\"title\":\"Service\",\"count\":117},{\"id\":\"model\",\"title\":\"Model\",\"count\":109},{\"id\":\"event\",\"title\":\"Event\",\"count\":89},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":78},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":269886},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007671},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":5353},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":2},{\"id\":\"2050\",\"title\":\"2050\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":17},{\"id\":\"2024\",\"title\":\"2024\",\"count\":24},{\"id\":\"2023\",\"title\":\"2023\",\"count\":30},{\"id\":\"2022\",\"title\":\"2022\",\"count\":41},{\"id\":\"2021\",\"title\":\"2021\",\"count\":81},{\"id\":\"2020\",\"title\":\"2020\",\"count\":142402},{\"id\":\"2019\",\"title\":\"2019\",\"count\":341496},{\"id\":\"2018\",\"title\":\"2018\",\"count\":83344},{\"id\":\"2017\",\"title\":\"2017\",\"count\":38201},{\"id\":\"2016\",\"title\":\"2016\",\"count\":34969},{\"id\":\"2015\",\"title\":\"2015\",\"count\":33513},{\"id\":\"2014\",\"title\":\"2014\",\"count\":35568},{\"id\":\"2013\",\"title\":\"2013\",\"count\":105435},{\"id\":\"2012\",\"title\":\"2012\",\"count\":174877},{\"id\":\"2011\",\"title\":\"2011\",\"count\":40755},{\"id\":\"2010\",\"title\":\"2010\",\"count\":19898},{\"id\":\"2009\",\"title\":\"2009\",\"count\":18753},{\"id\":\"2008\",\"title\":\"2008\",\"count\":21227},{\"id\":\"2007\",\"title\":\"2007\",\"count\":15628},{\"id\":\"2006\",\"title\":\"2006\",\"count\":13398},{\"id\":\"2005\",\"title\":\"2005\",\"count\":10487},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14834},{\"id\":\"2003\",\"title\":\"2003\",\"count\":11372},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13506},{\"id\":\"2001\",\"title\":\"2001\",\"count\":9222},{\"id\":\"2000\",\"title\":\"2000\",\"count\":10545},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7401},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5554},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7325},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4228},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3705},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3153},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3198},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2735},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2543},{\"id\":\"1990\",\"title\":\"1990\",\"count\":3026},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1695},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1638},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1825},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1907},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1646},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1464},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1587},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1395},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1191},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4635},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1057},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1010},{\"id\":\"1977\",\"title\":\"1977\",\"count\":934},{\"id\":\"1976\",\"title\":\"1976\",\"count\":885},{\"id\":\"1975\",\"title\":\"1975\",\"count\":828},{\"id\":\"1974\",\"title\":\"1974\",\"count\":886},{\"id\":\"1973\",\"title\":\"1973\",\"count\":756},{\"id\":\"1972\",\"title\":\"1972\",\"count\":712},{\"id\":\"1971\",\"title\":\"1971\",\"count\":702},{\"id\":\"1970\",\"title\":\"1970\",\"count\":589},{\"id\":\"1969\",\"title\":\"1969\",\"count\":652},{\"id\":\"1968\",\"title\":\"1968\",\"count\":509},{\"id\":\"1967\",\"title\":\"1967\",\"count\":734},{\"id\":\"1966\",\"title\":\"1966\",\"count\":546},{\"id\":\"1965\",\"title\":\"1965\",\"count\":559},{\"id\":\"1964\",\"title\":\"1964\",\"count\":506},{\"id\":\"1963\",\"title\":\"1963\",\"count\":434},{\"id\":\"1962\",\"title\":\"1962\",\"count\":466},{\"id\":\"1961\",\"title\":\"1961\",\"count\":385},{\"id\":\"1960\",\"title\":\"1960\",\"count\":354},{\"id\":\"1959\",\"title\":\"1959\",\"count\":326},{\"id\":\"1958\",\"title\":\"1958\",\"count\":347},{\"id\":\"1957\",\"title\":\"1957\",\"count\":360},{\"id\":\"1956\",\"title\":\"1956\",\"count\":283},{\"id\":\"1955\",\"title\":\"1955\",\"count\":259},{\"id\":\"1954\",\"title\":\"1954\",\"count\":414},{\"id\":\"1953\",\"title\":\"1953\",\"count\":215},{\"id\":\"1952\",\"title\":\"1952\",\"count\":194},{\"id\":\"1951\",\"title\":\"1951\",\"count\":259},{\"id\":\"1950\",\"title\":\"1950\",\"count\":207},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":186},{\"id\":\"1947\",\"title\":\"1947\",\"count\":123},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":74},{\"id\":\"1944\",\"title\":\"1944\",\"count\":138},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":67},{\"id\":\"1938\",\"title\":\"1938\",\"count\":129},{\"id\":\"1937\",\"title\":\"1937\",\"count\":78},{\"id\":\"1936\",\"title\":\"1936\",\"count\":118},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":135},{\"id\":\"1933\",\"title\":\"1933\",\"count\":298},{\"id\":\"1932\",\"title\":\"1932\",\"count\":251},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":163},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":250},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":55},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":46},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":179},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":40},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":67},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":63},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":32},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":45},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":26},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":52},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":40},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1792\",\"title\":\"1792\",\"count\":1},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":10},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1451\",\"title\":\"1451\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2},{\"id\":\"1000\",\"title\":\"1000\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":129677},{\"id\":\"2019\",\"title\":\"2019\",\"count\":279242},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38269},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1658},{\"id\":\"2016\",\"title\":\"2016\",\"count\":129},{\"id\":\"2015\",\"title\":\"2015\",\"count\":72},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803873},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":174097},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":62022},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":46944},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":41843},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27728},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":20351},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":19625},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15129}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803873},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":174097},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27564},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":25487},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24881},{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17495},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17297},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15051}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8379},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/05cc98565\",\"title\":\"Bank of Canada\",\"count\":178},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":99},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":92},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":26},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":25},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":19},{\"id\":\"ror.org/00za53h95\",\"title\":\"Johns Hopkins University\",\"count\":12}],\"prefixes\":[{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":174097},{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130739},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58819},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56678},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34962},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27564},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20740}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2920},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":742}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1062598},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":21530},{\"id\":\"4.3\",\"title\":\"Schema 4.3\",\"count\":13},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":12},{\"id\":\"2.1\",\"title\":\"Schema 2.1\",\"count\":2},{\"id\":\"2.3\",\"title\":\"Schema 2.3\",\"count\":1},{\"id\":\"metadata version 4\",\"title\":\"Schema metadata version 4\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":25679},{\"id\":\"404\",\"title\":\"404\",\"count\":3535},{\"id\":\"403\",\"title\":\"403\",\"count\":998},{\"id\":\"401\",\"title\":\"401\",\"count\":294},{\"id\":\"500\",\"title\":\"500\",\"count\":277},{\"id\":\"503\",\"title\":\"503\",\"count\":144},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":10},{\"id\":\"502\",\"title\":\"502\",\"count\":3}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -142,8 +142,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:25.442Z", - "time": 1920, + "startedDateTime": "2020-05-04T16:40:52.742Z", + "time": 1417, "timings": { "blocked": -1, "connect": -1, @@ -151,7 +151,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1920 + "wait": 1417 } }, { @@ -183,11 +183,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -206,8 +206,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:27.432Z", - "time": 240, + "startedDateTime": "2020-05-04T16:40:54.186Z", + "time": 199, "timings": { "blocked": -1, "connect": -1, @@ -215,7 +215,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 240 + "wait": 199 } }, { @@ -290,11 +290,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -313,8 +313,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:27.701Z", - "time": 119, + "startedDateTime": "2020-05-04T16:40:54.399Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -322,7 +322,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 92 } } ], diff --git a/recordings/Acceptance-consortium_admin-doi_604772299/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-consortium_admin-doi_604772299/visiting-specific-doi_4109340652/recording.har index d76fa9428..514b0c41b 100644 --- a/recordings/Acceptance-consortium_admin-doi_604772299/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-consortium_admin-doi_604772299/visiting-specific-doi_4109340652/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | doi/visiting specific doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8663, + "bodySize": 8723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8663, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8723, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:28.210Z", - "time": 155, + "startedDateTime": "2020-05-04T16:40:54.844Z", + "time": 156, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 155 + "wait": 156 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5401, + "bodySize": 5441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5401, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5441, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:28.478Z", - "time": 110, + "startedDateTime": "2020-05-04T16:40:55.290Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 110 + "wait": 120 } }, { @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:28.478Z", - "time": 180, + "startedDateTime": "2020-05-04T16:40:55.290Z", + "time": 247, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 180 + "wait": 247 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1762, + "bodySize": 1795, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1762, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1795, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:28.631Z", - "time": 117, + "startedDateTime": "2020-05-04T16:40:55.508Z", + "time": 125, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 125 } } ], diff --git a/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har b/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har index 5438a54e6..4694a4b77 100644 --- a/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har +++ b/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | organization/visiting provider DC consortium organization workshop", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/workshop?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 3811, + "bodySize": 3844, "content": { "mimeType": "application/json; charset=utf-8", - "size": 3811, - "text": "{\"data\":{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":14,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 3844, + "text": "{\"data\":{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":14,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:29.643Z", - "time": 158, + "startedDateTime": "2020-05-04T16:40:56.415Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 158 + "wait": 146 } } ], diff --git a/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organizations_2340610991/recording.har b/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organizations_2340610991/recording.har index 7111b82f7..056a08a78 100644 --- a/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organizations_2340610991/recording.har +++ b/recordings/Acceptance-consortium_admin-organization_1344144966/visiting-provider-DC-consortium-organizations_2340610991/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | organization/visiting provider DC consortium organizations", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:28.961Z", - "time": 250, + "startedDateTime": "2020-05-04T16:40:55.765Z", + "time": 203, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 250 + "wait": 203 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:29.229Z", - "time": 92, + "startedDateTime": "2020-05-04T16:40:55.991Z", + "time": 101, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 101 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/going-to-provider-DC-edit-form_3581962438/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/going-to-provider-DC-edit-form_3581962438/recording.har index 36dffcc0d..a3da645c4 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/going-to-provider-DC-edit-form_3581962438/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/going-to-provider-DC-edit-form_3581962438/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/going to provider DC edit form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:31.434Z", - "time": 228, + "startedDateTime": "2020-05-04T16:40:58.068Z", + "time": 181, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 228 + "wait": 181 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-dois_486390127/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-dois_486390127/recording.har index 42629a202..4207aa46a 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-dois_486390127/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-dois_486390127/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/visiting provider DC dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:35.082Z", - "time": 251, + "startedDateTime": "2020-05-04T16:41:01.256Z", + "time": 196, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 251 + "wait": 196 } }, { @@ -183,11 +183,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=dc&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 65461, + "bodySize": 49906, "content": { "mimeType": "application/json; charset=utf-8", - "size": 65461, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/6brg-2m37\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/6brg-2m37\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5438/6brg-2m37\",\"identifierType\":\"DOI\"},{\"identifier\":\"937-0-4523-12357-6\",\"identifierType\":\"ISBN\"}],\"creators\":[{\"name\":\"Smith, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Smith\",\"affiliation\":[]},{\"name\":\"つまらないものですが\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"pl\",\"title\":\"Właściwości rzutowań podprzestrzeniowych\"},{\"lang\":\"en\",\"title\":\"Translation of Polish titles\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Springer\",\"container\":{},\"publicationYear\":2010,\"subjects\":[{\"lang\":\"en\",\"subject\":\"830 German & related literatures\",\"subjectScheme\":\"DDC\"},{\"lang\":\"en\",\"subject\":\"Polish Literature\"}],\"contributors\":[{\"name\":\"Doe, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Doe\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0001-5393-1421\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2010\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Monograph\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5272/oldertestpub\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"256 pages\"],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution-NoDerivs 2.0 Generic\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nd/2.0\"}],\"descriptions\":[{\"lang\":\"la\",\"description\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea\\n takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores\\n et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.datacite.org\",\"contentUrl\":null,\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-08-30T23:02:16.000Z\",\"registered\":\"2018-08-30T23:03:22.000Z\",\"published\":\"2010\",\"updated\":\"2020-04-23T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.transfer\",\"type\":\"clients\"}}}},{\"id\":\"10.70102/fk2osf.io/hu3qn\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70102/fk2osf.io/hu3qn\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70102/fk2osf.io/hu3qn\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Admin, Abram\",\"nameType\":\"Personal\",\"givenName\":\"Abram\",\"familyName\":\"Admin\",\"affiliation\":[]},{\"name\":\"Thoob, Marba\",\"nameType\":\"Personal\",\"givenName\":\"Marba\",\"familyName\":\"Thoob\",\"affiliation\":[]},{\"name\":\"Admin, Abram\",\"nameType\":\"Personal\",\"givenName\":\"Abram\",\"familyName\":\"Admin\",\"affiliation\":[]}],\"titles\":[{\"title\":\"popular\"}],\"publisher\":\"Open Science Framework\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Project\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"No license\"}],\"descriptions\":[{\"description\":\"aoeuaoeu and someaoeuaoeueueueueueueueu\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:5000/hu3qn/\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-07T15:57:54.000Z\",\"registered\":\"2019-06-07T15:57:55.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.cos\",\"type\":\"clients\"}}}},{\"id\":\"10.24365/interesting_pub\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24365/interesting_pub\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24365/interesting_pub\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Smith, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Smith\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Interesting Pub\"}],\"publisher\":\"Me\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://identifiers.globus.org/id/10.24365/interesting_pub/landingpage\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-04-19T04:33:35.000Z\",\"registered\":\"2018-04-19T04:34:03.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:01:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.globus\",\"type\":\"clients\"}}}},{\"id\":\"10.33522/olly-avtx\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33522/olly-avtx\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33522/olly-avtx\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Washington, Donna L.\",\"nameType\":\"Personal\",\"givenName\":\"Donna L.\",\"familyName\":\"Washington\",\"affiliation\":[]},{\"name\":\"Bowles, Jacqueline\",\"nameType\":\"Personal\",\"givenName\":\"Jacqueline\",\"familyName\":\"Bowles\",\"affiliation\":[]},{\"name\":\"Saha, Somnath\",\"nameType\":\"Personal\",\"givenName\":\"Somnath\",\"familyName\":\"Saha\",\"affiliation\":[]},{\"name\":\"Horowitz, Carol R.\",\"nameType\":\"Personal\",\"givenName\":\"Carol R.\",\"familyName\":\"Horowitz\",\"affiliation\":[]},{\"name\":\"Moody-Ayers, Sandra\",\"nameType\":\"Personal\",\"givenName\":\"Sandra\",\"familyName\":\"Moody-Ayers\",\"affiliation\":[]},{\"name\":\"Brown, Arleen F.\",\"nameType\":\"Personal\",\"givenName\":\"Arleen F.\",\"familyName\":\"Brown\",\"affiliation\":[]},{\"name\":\"Stone, Valerie E.\",\"nameType\":\"Personal\",\"givenName\":\"Valerie E.\",\"familyName\":\"Stone\",\"affiliation\":[]},{\"name\":\"Cooper, Lisa A.\",\"nameType\":\"Personal\",\"givenName\":\"Lisa A.\",\"familyName\":\"Cooper\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Transforming Clinical Practice to Eliminate Racial–Ethnic Disparities in Healthcare\"}],\"publisher\":\"Digital Repository at the University of Maryland\",\"container\":{},\"publicationYear\":2008,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2008\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://drumdev.lib.umd.edu/handle/1903.DEV/20102\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-01T10:01:09.000Z\",\"registered\":\"2019-06-01T10:01:11.000Z\",\"published\":\"2008\",\"updated\":\"2020-04-23T07:01:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.umd\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/f6a5121e20200744dc8c593db8895724\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/f6a5121e20200744dc8c593db8895724\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/f6a5121e20200744dc8c593db8895724\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://localhost:8088/package/eml/knb-lter-nwk/1002106/1\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Carroll, Utah\",\"nameType\":\"Personal\",\"givenName\":\"Utah\",\"familyName\":\"Carroll\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Fictional Bug Count in Nonesuch, Utah & Anysuch, Arizona\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost/nis/mapbrowse?packageid=knb-lter-nwk.1002106.1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-03T04:20:06.000Z\",\"registered\":\"2020-03-03T04:20:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:01:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}},{\"id\":\"10.24418/r30e-t080\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24418/r30e-t080\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24418/r30e-t080\",\"identifierType\":\"DOI\"}],\"creators\":[{\"affiliation\":[]}],\"titles\":[{\"title\":\"Test-05-13::12:33\"}],\"publisher\":\"menRva. Galter Health Sciences Library & Learning Center\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost:5000/records/11\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-13T17:33:54.000Z\",\"registered\":\"2019-05-13T17:33:55.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.ghsl\",\"type\":\"clients\"}}}},{\"id\":\"10.33516/qktj7gwz\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33516/qktj7gwz\",\"identifiers\":[],\"creators\":[{\"name\":\"Maha Al-Tameemi, Luciano E. H. Violante, Andres D. Campiglia*\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Room Temperature Absorption Spectra of High-Molecular Weight Polycyclic Aromatic Hydrocarbons\"}],\"publisher\":\"Harte Research Institute\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://data.gulfresearchinitiative.org/tombstone/R5.x284.000:0001\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-31T18:08:36.000Z\",\"registered\":\"2020-03-31T18:08:44.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:01:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.griidc\",\"type\":\"clients\"}}}},{\"id\":\"10.0322/bldev.app.15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0322/bldev.app.15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0322/bldev.app.15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[]},{\"name\":\"Guest\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Ensemble Tracking\"}],\"publisher\":\"brainlife.io\",\"container\":{},\"publicationYear\":2017,\"subjects\":[{\"subject\":\"tracking\"}],\"contributors\":[{\"name\":\"Kitchell, Lindsey\",\"nameType\":\"Personal\",\"givenName\":\"Lindsey\",\"familyName\":\"Kitchell\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"McPherson, Brent\",\"nameType\":\"Personal\",\"givenName\":\"Brent\",\"familyName\":\"McPherson\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Undefined\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"This service uses MRtrix 0.2.12 to do ensemble tracking using tensor and constrained spherical deconvolution (csd) algorithms. It generates a large set of candidate streamlines using a tensor-based deterministic model, csd-based deterministic model, and csd-based probabilistic model. The csd-based models can be computed at lmax values of 2, 4, 6, 8, 10, and 12. All candidate streamlines are combined into a single track.mat file. If you know the max lmax value for your data input the value for max_lmax, otherwise leave it blank and it will be calculated for you. If you wish to use just deterministic tracking (MRtrix streamtrack parameter SD_STREAM) check do_deterministic. If you wish to use just probabilistic tracking (MRtrix streamtrack parameter SD_PROB) check do_probabilistic If you wish to use the tensor tracking (MRtrix streamtrack parameter DT_STREAM) check do_tensor. By default it will use all three tracking methods. For more information about Ensemble Tractography see Takemura, H., Caiafa, C. F., Wandell, B. A., & Pestilli, F. (2016). Ensemble tractography. PLoS computational biology, 12(2), e1004692.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost.brainlife.io/app/592dbbccb3cd7c00211dc235\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-07-31T02:06:43.000Z\",\"registered\":\"2018-07-31T02:07:03.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:01:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.bl\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.33515/dspace-4\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33515/dspace-4\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33515/dspace-4\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://localhost:8080/xmlui/handle/123456789/27\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Demo Three\"}],\"publisher\":\"Kim Shepherd DOI Testing\",\"container\":{},\"publicationYear\":2018,\"subjects\":[{\"subject\":\"bird\"},{\"subject\":\"cat\"},{\"subject\":\"dog\"},{\"subject\":\"fish\"}],\"contributors\":[{\"name\":\"Testing, Kim Shepherd DOI\",\"nameType\":\"Personal\",\"givenName\":\"Kim Shepherd DOI\",\"familyName\":\"Testing\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"Testing, Kim Shepherd DOI\",\"nameType\":\"Personal\",\"givenName\":\"Kim Shepherd DOI\",\"familyName\":\"Testing\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2018-12-19\",\"dateType\":\"Accepted\"},{\"date\":\"2018-12-19\",\"dateType\":\"Available\"},{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"1 creator, 4 subjects\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/xmlui/handle/123456789/27\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-09-21T21:55:14.000Z\",\"registered\":\"2019-09-21T21:55:17.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.shepherd\",\"type\":\"clients\"}}}},{\"id\":\"10.70048/c133-cc95\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70048/c133-cc95\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70048/c133-cc95\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"De Graaf, M.\",\"nameType\":\"Personal\",\"givenName\":\"M.\",\"familyName\":\"De Graaf\",\"affiliation\":[{\"name\":\"Royal Netherlands Meteorological Institute (KNMI)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1282-6582\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Stammes, P.\",\"nameType\":\"Personal\",\"givenName\":\"P.\",\"familyName\":\"Stammes\",\"affiliation\":[{\"name\":\"Royal Netherlands Meteorological Institute (KNMI)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-2488-3990\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Tilstra, L.G.\",\"nameType\":\"Personal\",\"givenName\":\"L.G.\",\"familyName\":\"Tilstra\",\"affiliation\":[{\"name\":\"Royal Netherlands Meteorological Institute (KNMI)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1282-6582\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"OMI-MODIS aerosol direct radiative effect over clouds, version 1.0\"}],\"publisher\":\"Royal Netherlands Meteorological Institute (KNMI)\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Atmosphere above-cloud aerosol direct radiative effect\"},{\"subject\":\"OMI\"},{\"subject\":\"MODIS\"},{\"subject\":\"TEMIS\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Satellite data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1029/2011jd017160\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The OMI-MODIS above-cloud aerosol Direct Radiative Effect (DRE) database is available for all cloud scenes in an area over the south-east Atlantic (20W - 10E, 20S - 10N) from 2002 to present during the months June - October. This is a period of massive vegetation burning in southern Africa during the dry season and often smoke plumes can be observed drifting over the Atlantic ocean. The aerosol DRE from OMI-MODIS indicates the warming effect of the smoke when it overlies clouds due to absorption of sunlight. This is measured in Watts per square meter (W/m2).The data are accompanied by images that show an overview of the warming effect on a particular day. The OMI-MODIS aerosol DRE is overplotted over MODIS RGB showing clouds.The database is described in the following paper:M. de Graaf, L.G. Tilstra, and P. Stammes, Aerosol direct radiative effect over clouds from a synergy of OMI and MODIS reflectances, Atmos. Meas. Techn., https://doi.org/10.5194/amt-2019-53, 2019, doi:/10.5194/amt-2019-53For more information, see http://www.temis.nl/climate/adre.html\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":\"+10.0\",\"northBoundLatitude\":\"+10.0\",\"southBoundLatitude\":\"-20.0\",\"westBoundLongitude\":\"-20.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Dutch National Programme for Space Research\",\"funderName\":\"Netherlands Space Office\",\"awardNumber\":\"ALW-GO/12-32\"}],\"url\":\"http://example.com\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-10T12:26:52.000Z\",\"registered\":\"2019-10-10T12:28:02.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:57.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.rph\",\"type\":\"clients\"}}}},{\"id\":\"10.70126/nbc0-qy25\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70126/nbc0-qy25\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70126/nbc0-qy25\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"University Of Washington Libraries\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"RDA Application Profile Extension\"}],\"publisher\":\"University of Washington Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"LibraryData\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1-0-1\",\"rightsList\":[{\"rights\":\"CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":null,\"description\":\"Meereswissenschaftliche Berichte No 37 1999 - Marine Science Reports No 37 1999\",\"descriptionType\":\"SeriesInformation\"},{\"lang\":null,\"description\":\"Meereswissenschaftliche Berichte No 37 1999 - Marine Science Reports No 37 1999\",\"descriptionType\":\"SeriesInformation\"},{\"lang\":\"en\",\"description\":\"The results of the biological environmental monitoring of 1998 carried out by the Baltic Sea Research Institute (IOW) within the HELCOM programme are presented and discussed. In 1998, the spring bloom of phytoplankton started in Mecklenburg Bight in the mid of March and was produced mainly by diatoms (Chaetoceros sp.). At later stages, the contribution of dinoflagellates (Gymnodinium spp.) increased continuously. In the Arkona Sea, the spring bloom started approximately on 20 March (Chaetoceros sp.), again followed by Gymnodinium spp. Also in the Bornholm Sea, the spring bloom started at the end of March, but was dominated by Gymnodinium spp. from the beginning. In summer, cyanobacteria and several flagellates were the dominant groups in the Baltic Proper. The diatom Dactyliosolen fragilissimus formed a bloom in Mecklenburg Bight in June/July 1998. A sample from 15 September 1998 from the Arkona Sea showed an emormous bloom of Prorocentrum micans. In late autumn, the diatom Coscinodiscus granii dominated in the Baltic Proper but the dinoflagellate Ceratium tripos in Mecklenburg Bight. The statements on phytoplankton development are supported by chlorophyll data (gathered both by fluorometric analysis and remote sensing). The chlorophyll data are especially useful for long-term trend analyses. Different hypotheses for explaining the relatively late spring blooms in the eastern parts of the Baltic Sea and the long-term replacement of diatoms by dinoflagellates in the spring blooms are discussed. The analysis of sedimenting particles for the year 1997 revealed the prevailance of the spring season for the vertical flux of particulate matter, in contrast to 1996, when high sedimentation occurred also in late summer/autumn. The qualitative analysis of sedimenting phytoplankton species showed, however, similar patterns in 1996 and 1997. The seasonal cycle of pelagic algae was well reflected in the sediment traps. The abundance of rotatoria (Synchaeta sp.) increased strongly in comparison with the previous year (maximum in May, frequently a second maximum in October), but the abundance of copepods decreased. A seasonal shift in the copepod maxima was conspicuous: in 1997, the peak was reached only in August, but in 1998 already in May (exception: deep water in the Bornholm Sea and Eastern Gotland Sea). The abundance of cladocerans in 1998 was clearly lower than in 1997, especially in August. It has to be admitted that the real abundance peaks of the different zooplankton groups may have been missed due to a rather low sampling frequency. Methodological problems are discussed in detail. The number of species of macrozoobenthos increased when compared with data from previous years. It amounted to 83 in 1998 and ranged from 3 in the Bornholm Sea to 49 in the Fehmarn Belt. The well-flushed, sandy or gravelly areas of Fehmarn Belt, Darss Sill and southern Arkona Sea were especially rich in species. At silty stations in Mecklenburg Bight, the stock of Euchone papillosa (Polychaeta) recovered. As in the previous year, the glacial relicts Pontoporeia femorata and Saduria entomon occurred at several stations. Also the mussels Astarte borealis and A. elliptica were noticed. Some species, absent for years or decades in Mecklenburg Bight, Arkona Sea and Pomeranian Bay, are still missing: Monoporeia affinis, Buccinum undatum, Nassarius reticulatus, Astarte montagui, Scrobicularia plana and Macoma calcarea. The density of individuals of macrozoobenthos ranged from 13 ind. m-2 (in Bornholm Sea) to 7.235 ind. m-2 (southern Arkona Sea) in 1998. The biomass (as ash-free dry weight) was between 0,01 g m-2 (Bornholm Sea) and 48,4 g m-2 (east of Darss Sill). For a better assessing of the macrozoobenthos, a dredge and video technique were applied besides the traditional van-Veen grab. Seven additional taxa could be found by these new methods. Moreover, the video images made an analysis of habitat structures, the substrate and the patchiness possible.\",\"descriptionType\":\"Abstract\"},{\"lang\":\"de-DE\",\"description\":\"Während die Phytoplankton-Entwicklung im Jahre 1997 ungewöhnlich früh begann, kann das Jahr 1998 in dieser Hinsicht als ein “normales” Jahr angesehen werden. Die Frühjahrsblüte begann in der Mecklenburger Bucht Mitte März mit einer Kieselalgenentwicklung (Chaetoceros spp.), die im April in eine Phase mit Dinophyceen-Dominanz (Gymnodinium spp.) überging. In der Arkonasee begann die Frühjahrsblüte um den 20. März 1998 mit einer Kieselalgenentwicklung (Chaetoceros spp.), an die sich Anfang April eine Dinoflagellatenblüte (Gymnodinium spp.) anschloß. Auch in der Bornholmsee begann die Blüte schon Ende März, wurde hier aber von Anfang an von Gymnodinium spp. dominiert. Im Sommer herrschten in der eigentlichen Ostsee Cyanobakterien und diverse Flagellaten vor. Die Kieselalge Dactyliosolen fragilissimus bildete im Juni/Juli 1998 in der Mecklenburger Bucht eine Blüte. Eine Probe vom 15.9.98 aus der Arkonasee zeigte eine gewaltige Blüte von Prorocentrum micans. Im Herbst dominierte in der eigentlichen Ostsee die Kieselalge Coscinodiscus granii und in der Mecklenburger Bucht der Dinoflagellat Ceratium tripos. Die Aussagen zur Phytoplanktonentwicklung werden auch von Chlorophyll-Daten (sowohl analytisch als auch aus Satellitenbildern ermittelt) gestützt. Die Chlorophyll-Daten sind insbesondere für die Analyse von Langzeit-Trends der Phytoplankton-Biomasse nützlich. Verschiedene Hypothesen zur Erklärung des späteren Beginns der Frühjahrsblüte in den östlicheren Teilen der Ostsee und zur Verdrängung der Kieselalgen werden diskutiert. Die Analyse der Sinkstoffe zeigte für das Jahr 1997 die Frühjahrsphase als quantitativ wichtigsten Zeitraum für den Partikelfluß. Dies steht im Gegensatz zum Vorjahr, in dem die Mengen der Frühjahrs- und Spätsommer/Herbstsedimentation ausgeglichener waren. Bei der qualitativen Analyse der absinkenden Phytoplanktonarten und -gruppen zeigte sich allerdings ein ähnliches Bild wie im Vorjahr. Die saisonale Sukzession der pelagischen Algengruppen in der Deckschicht wird im Fallenmaterial gut abgebildet. Im Zooplankton hat die Abundanz der Rotatorien (Synchaeta spec.) im Vergleich zum Vorjahr stark zugenommen (Maximum im Mai, oft noch ein zweites im Oktober), die der Copepoden dagegen im allgemeinen abgenommen. Auffällig ist die jahreszeitliche Verschiebung der Maxima der Copepodenabundanz: 1997 wurden die Maxima erst im August erreicht, 1998 schon im Mai (Ausnahme: die Tiefenschichten im Bornholm- und Gotlandbecken). Die Abundanz der Cladoceren war 1998 deutlich geringer als 1997, insbes. im August. Es kann allerdings nicht ausgeschlossen werden, daß die realen Abundanzmaxima der verschiedenen Gruppen wegen der geringen Probennahmefrequenz durch das zeitliche Beprobungsraster gefallen sind. Auf generelle methodische Probleme wird ausführlich eingegangen. Die Artenzahl des Makrozoobenthos nahm im Vergleich zu den Vorjahren zu und erreichte insgesamt 83. Sie lag 1998 zwischen 3 (Bornholmbecken) und 49 (Fehmarnbelt). Als besonders artenreich erwiesen sich die gut durchströmten und damit sandig-kiesigen Bereiche Fehmarnbelt, Darßer Schwelle und südliche Arkonasee. Auf den schlickigen Stationen in der Mecklenburger Bucht wäre z.B. Euchone papillosa (Polychaeta) hervorzuheben, dessen Bestände sich seit einiger Zeit wieder zu erholen scheinen. Wie im Vorjahr konnten auch 1998 an mehreren Stationen die Glazialrelikte Pontoporeia femorata und Saduria entomon beobachtet werden. Auch die Muscheln Astarte borealis und A. elliptica wurden an einigen Stationen festgestellt. Dahingegen fehlten einige Arten, die seit Jahren bzw. Jahrzehnten in der südlichen und westlichen Ostsee (Mecklenburger Bucht, Arkonabecken, Pommernbucht) nicht mehr gefunden werden. Dazu zählen Monoporeia affinis, Buccinum undatum, Nassarius reticulatus, Astarte montagui, Scrobicularia plana und Macoma calcarea. Die Individuendichten des Makrozoobenthos lagen 1998 zwischen 13 Ind. m-2 (Bornholmbecken) und 7.235 Ind. m-2 (südliche Arkonasee). Die Biomasse (als aschefreies Trockengewicht) schwankte zwischen 0,01 g m-2 (Bornholmbecken) und 48,4 g m-2 (östlich der Darßer Schwelle). Zur besseren Beurteilung des Makrozoobenthos wurden neben den herkömmlichen van-Veen-Greifern auch eine Dredge und Videotechnik eingestezt. 7 Taxa konnten damit zusätzlich nachgewiesen werden. Außerdem erlaubte die Auswertung des Bildmaterials eine Analyse der Strukturen, des Substrates und der Verteilung (Patchiness) an den Stationen\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://example.org\",\"contentUrl\":null,\"metadataVersion\":6,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-14T14:24:58.000Z\",\"registered\":\"2019-10-14T14:24:58.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:44.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.mary\",\"type\":\"clients\"}}}},{\"id\":\"10.24410/kaust-d28e4\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24410/kaust-d28e4\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24410/kaust-d28e4\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://hdl.handle.net/10754/621882\",\"identifierType\":\"Handle\"}],\"creators\":[{\"name\":\"Grenz, Daryl M.\",\"nameType\":\"Personal\",\"givenName\":\"Daryl M.\",\"familyName\":\"Grenz\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8742-664X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Baessa, Mohamed A.\",\"nameType\":\"Personal\",\"givenName\":\"Mohamed A.\",\"familyName\":\"Baessa\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-9927-5204\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Workshop: Creating Your Institutional Research Repository\"}],\"publisher\":\"KAUST Research Repository\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Presentation\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"In 2002, the Scholarly Publishing and Academic Resources Coalition (SPARC) proposed the concept of an institutional repository to simultaneously disrupt and enhance the state of scholarly communications in the academic world. Thirteen years later, thousands of universities and other institutions have answered this call, but many more have not due to gaps in budgets, awareness and, most of all, practical guidance on creating an institutional repository. This workshop provides you with an essential primer on what it takes to establish a fully-functioning institutional repository. Every aspect of the process will be covered, including policies, procedures, staffing guidelines, workflows and repository technologies.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://kaust.test.openrepository.com/handle/10754/621882\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-06T19:00:04.000Z\",\"registered\":\"2019-07-06T19:00:07.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"clients\"}}}},{\"id\":\"10.0307/ir-3116\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0307/ir-3116\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0307/ir-3116\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://localhost:8080/viurr-6/handle/10613/8601\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Nijs, Peter\",\"nameType\":\"Personal\",\"givenName\":\"Peter\",\"familyName\":\"Nijs\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en\",\"title\":\"63987: doi test\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-08-01\",\"dateType\":\"Accepted\"},{\"date\":\"2019-08-01\",\"dateType\":\"Available\"},{\"date\":\"2019-08-01\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC0 1.0 Universal\"},{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/viurr-6/handle/10613/8601\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-02T10:36:41.000Z\",\"registered\":\"2019-08-02T14:38:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"clients\"}}}},{\"id\":\"10.7968/20191101.1/8\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7968/20191101.1/8\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7968/20191101.1/8\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.5072/2345lkj\",\"identifierType\":\"uri\"},{\"identifier\":\"http://localhost:8080/jspui/handle/123456789/12\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test 5\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-11-01\",\"dateType\":\"Accepted\"},{\"date\":\"2019-11-01\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/jspui/handle/123456789/12\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-01T17:01:11.000Z\",\"registered\":\"2019-11-01T17:01:49.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.becker\",\"type\":\"clients\"}}}},{\"id\":\"10.33540/2t41-w985\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33540/2t41-w985\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33540/2t41-w985\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\", Paul\",\"nameType\":\"Personal\",\"givenName\":\"Paul\",\"affiliation\":[{\"name\":\"CyVerse\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-us\",\"title\":\"test title\"}],\"publisher\":\"CyVerse Data Commons\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"en-us\",\"subject\":\"test subject\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"test resc\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"ODC PDDL\"}],\"descriptions\":[{\"lang\":\"en-us\",\"description\":\"descr\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacommons.cyverse.org/browse/iplant/home/shared/commons_repo/curated/paul-doi-test-email2\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-12T23:39:54.000Z\",\"registered\":\"2019-08-12T23:39:54.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"sml.cyverse\",\"type\":\"clients\"}}}},{\"id\":\"10.33523/oier6v/cyjxdo\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33523/oier6v/cyjxdo\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33523/oier6v/cyjxdo\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dataverse, Administrator\",\"nameType\":\"Personal\",\"givenName\":\"Administrator\",\"familyName\":\"Dataverse\",\"affiliation\":[{\"name\":\"(ICRISAT)\"}]}],\"titles\":[{\"title\":\"50by1000.tab\"}],\"publisher\":\"ICRISAT Dataverse\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Dataverse, Administrator\",\"nameType\":\"Personal\",\"givenName\":\"Administrator\",\"familyName\":\"Dataverse\",\"affiliation\":[{\"name\":\"(ICRISAT)\"}],\"contributorType\":\"ContactPerson\"}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"doi:10.33523/oier6v\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://dataverse.icrisat.org/file.xhtml?persistentId=doi:10.33523/OIER6V/CYJXDO\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-04T03:08:59.000Z\",\"registered\":\"2019-04-04T03:09:01.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.icrisat\",\"type\":\"clients\"}}}},{\"id\":\"10.24427/fjsc-kw78\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24427/fjsc-kw78\",\"identifiers\":[],\"creators\":[{\"name\":\"DataCite\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://ror.org\",\"nameIdentifier\":\"https://ror.org/04wxnsj81\",\"nameIdentifierScheme\":\"ROR\"}]},{\"name\":\"ORCID\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://ror.org\",\"nameIdentifier\":\"https://ror.org/04fa4r544\",\"nameIdentifierScheme\":\"ROR\"}]}],\"titles\":[{\"lang\":null,\"title\":\"DataCite-ORCID Integration\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2015,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"PID Service\",\"resourceTypeGeneral\":\"Service\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"DataCite Search & Link and Auto-Update services let researchers search the DataCite Metadata Store to find your research datasets, images, and other works, and link them to an ORCID record. Researchers can also give DataCite permission to automatically add newly published works with a DataCite DOI that contains their ORCID identifier to their ORCID record.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/how-to-activate-orcid-auto-update\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-30T07:27:03.000Z\",\"registered\":\"2019-03-30T07:27:05.000Z\",\"published\":\"2015\",\"updated\":\"2020-04-23T06:32:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.services\",\"type\":\"clients\"}}}},{\"id\":\"10.0309/rwstg1k34u\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0309/rwstg1k34u\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0309/rwstg1k34u\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Martin, Ross\",\"nameType\":\"Personal\",\"givenName\":\"Ross\",\"familyName\":\"Martin\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"brand new record\"}],\"publisher\":\"Axiom Data Science\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1\",\"rightsList\":[],\"descriptions\":[{\"description\":\"brand new\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://search-stage.test.dataone.org/#view/10.0309/rwstg1k34u\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-09-10T01:06:13.000Z\",\"registered\":\"2019-09-10T01:06:14.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70044/sn/au\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70044/sn/au\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70044/sn/au\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Geoscience Australia\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"MIT Media Lab\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Australian National Seismograph Network\"}],\"publisher\":\"International Federation of Digital Seismograph Networks\",\"container\":{},\"publicationYear\":1994,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"1994\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Seismic Network\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsDocumentedBy\",\"relatedIdentifier\":\"https://doi.org/10.7914/sn/1a_2019\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsDocumentedBy\",\"relatedIdentifier\":\"https://doi.org/10.7914/sn/iu\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"SEED data\"],\"version\":null,\"rightsList\":[{\"rights\":\"My Custom License\",\"rightsUri\":\"http://www.iris.edu/\"}],\"descriptions\":[{\"description\":\"Geoscience Australia operates a network of broadband seismometers across Australia and it's offshore territories known as the Australian Notional Seismograph Network (ANSN).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":\"151.109\",\"northBoundLatitude\":\"-12.712\",\"southBoundLatitude\":\"-34.609\",\"westBoundLongitude\":\"114.234\"}}],\"fundingReferences\":[],\"url\":\"http://www.fdsn.org/networks/detail/AU/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-21T01:13:26.000Z\",\"registered\":\"2019-11-21T01:13:27.000Z\",\"published\":\"1994\",\"updated\":\"2020-04-23T06:32:14.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.iris\",\"type\":\"clients\"}}}},{\"id\":\"10.33522/1y5l-ksln\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33522/1y5l-ksln\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33522/1y5l-ksln\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Moss, Margaret\",\"nameType\":\"Personal\",\"givenName\":\"Margaret\",\"familyName\":\"Moss\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"American Indian Health Disparities: Where's the Moral Outrage?\"}],\"publisher\":\"Digital Repository at the University of Maryland\",\"container\":{},\"publicationYear\":2011,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://drumstage.lib.umd.edu/handle/1903.STAGE/26710\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T07:55:29.000Z\",\"registered\":\"2020-03-25T07:55:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T06:31:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.umd\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/a2fc4ecd990a03385b582ce811f89f1a\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/a2fc4ecd990a03385b582ce811f89f1a\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/a2fc4ecd990a03385b582ce811f89f1a\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://pasta-s.lternet.edu/package/eml/knb-lter-jrn/210278001/69\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Reichmann, Lara\",\"nameType\":\"Personal\",\"givenName\":\"Lara\",\"familyName\":\"Reichmann\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Soil Water Availability responses to manipulated precipitation at the Jornda Basin, 2007-2009,\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"A 2-year experimental manipulation of rainfall was conducted in grasslands dominated by black grama on the Jornada Experimental Range from 2007-2009. The objective was to understand the interaction of precipitation on ANPP legacies. Rain-out shelters were used to create 5 levels of precipitation: -80% and -50% reduced, ambient control, and +50% and +80% increased PPT. At each plot, both volumetric soil water content and soil water content were monitored at short (0-5 cm) and deep (30-50 cm) depths. This data set contains the date of collection, block number, plot number, precipitation treatment, depth of soil probe, voltage, and volumetric water content. This study was complete in November 2009. For further information and results, see: Throop, H., L. G. Reichmann, O. Sala, and S. Archer. 2012. Response of dominant grass and shrub species to water manipulation: an ecophysical basis for shrub invasion in a Chihuahuan desert grassland. Oecologia 169: 373-383.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://portal-s.lternet.edu/nis/mapbrowse?packageid=knb-lter-jrn.210278001.69\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-03T20:20:48.000Z\",\"registered\":\"2020-01-03T20:20:50.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T06:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}},{\"id\":\"10.24418/19y9-nf80\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24418/19y9-nf80\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24418/19y9-nf80\",\"identifierType\":\"DOI\"}],\"creators\":[{\"affiliation\":[]}],\"titles\":[{\"title\":\"Test-04-26:13:38\"}],\"publisher\":\"Galter Health Sciences Library\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost:5000/records/2\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-26T18:38:56.000Z\",\"registered\":\"2019-04-26T18:38:57.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:31:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.ghsl\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":44374,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":26700},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":11308},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":6366}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":6836},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":473},{\"id\":\"text\",\"title\":\"Text\",\"count\":408},{\"id\":\"software\",\"title\":\"Software\",\"count\":156},{\"id\":\"other\",\"title\":\"Other\",\"count\":145},{\"id\":\"image\",\"title\":\"Image\",\"count\":50},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":34},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":21},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":12},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4660},{\"id\":\"2019\",\"title\":\"2019\",\"count\":18771},{\"id\":\"2018\",\"title\":\"2018\",\"count\":20915},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"published\":[{\"id\":\"2222\",\"title\":\"2222\",\"count\":2},{\"id\":\"2020\",\"title\":\"2020\",\"count\":3410},{\"id\":\"2019\",\"title\":\"2019\",\"count\":3388},{\"id\":\"2018\",\"title\":\"2018\",\"count\":229},{\"id\":\"2017\",\"title\":\"2017\",\"count\":172},{\"id\":\"2016\",\"title\":\"2016\",\"count\":123},{\"id\":\"2015\",\"title\":\"2015\",\"count\":64},{\"id\":\"2014\",\"title\":\"2014\",\"count\":144},{\"id\":\"2013\",\"title\":\"2013\",\"count\":329},{\"id\":\"2012\",\"title\":\"2012\",\"count\":843},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2851},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1338},{\"id\":\"2009\",\"title\":\"2009\",\"count\":1037},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1007},{\"id\":\"2007\",\"title\":\"2007\",\"count\":1275},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1322},{\"id\":\"2005\",\"title\":\"2005\",\"count\":1008},{\"id\":\"2004\",\"title\":\"2004\",\"count\":1243},{\"id\":\"2003\",\"title\":\"2003\",\"count\":738},{\"id\":\"2002\",\"title\":\"2002\",\"count\":646},{\"id\":\"2001\",\"title\":\"2001\",\"count\":593},{\"id\":\"2000\",\"title\":\"2000\",\"count\":591},{\"id\":\"1999\",\"title\":\"1999\",\"count\":146},{\"id\":\"1998\",\"title\":\"1998\",\"count\":99},{\"id\":\"1997\",\"title\":\"1997\",\"count\":55},{\"id\":\"1996\",\"title\":\"1996\",\"count\":40},{\"id\":\"1995\",\"title\":\"1995\",\"count\":71},{\"id\":\"1994\",\"title\":\"1994\",\"count\":75},{\"id\":\"1993\",\"title\":\"1993\",\"count\":29},{\"id\":\"1992\",\"title\":\"1992\",\"count\":34},{\"id\":\"1991\",\"title\":\"1991\",\"count\":17},{\"id\":\"1990\",\"title\":\"1990\",\"count\":23},{\"id\":\"1989\",\"title\":\"1989\",\"count\":6},{\"id\":\"1988\",\"title\":\"1988\",\"count\":10},{\"id\":\"1987\",\"title\":\"1987\",\"count\":5},{\"id\":\"1986\",\"title\":\"1986\",\"count\":6},{\"id\":\"1985\",\"title\":\"1985\",\"count\":17},{\"id\":\"1984\",\"title\":\"1984\",\"count\":6},{\"id\":\"1983\",\"title\":\"1983\",\"count\":8},{\"id\":\"1982\",\"title\":\"1982\",\"count\":7},{\"id\":\"1981\",\"title\":\"1981\",\"count\":5},{\"id\":\"1978\",\"title\":\"1978\",\"count\":11},{\"id\":\"1974\",\"title\":\"1974\",\"count\":6},{\"id\":\"1965\",\"title\":\"1965\",\"count\":1},{\"id\":\"1956\",\"title\":\"1956\",\"count\":6},{\"id\":\"1947\",\"title\":\"1947\",\"count\":17},{\"id\":\"1944\",\"title\":\"1944\",\"count\":6},{\"id\":\"1939\",\"title\":\"1939\",\"count\":5},{\"id\":\"1937\",\"title\":\"1937\",\"count\":6},{\"id\":\"1936\",\"title\":\"1936\",\"count\":6},{\"id\":\"1934\",\"title\":\"1934\",\"count\":5},{\"id\":\"1932\",\"title\":\"1932\",\"count\":106},{\"id\":\"1931\",\"title\":\"1931\",\"count\":1},{\"id\":\"1930\",\"title\":\"1930\",\"count\":5},{\"id\":\"1928\",\"title\":\"1928\",\"count\":6},{\"id\":\"1924\",\"title\":\"1924\",\"count\":9},{\"id\":\"1922\",\"title\":\"1922\",\"count\":6},{\"id\":\"1920\",\"title\":\"1920\",\"count\":1},{\"id\":\"1918\",\"title\":\"1918\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1},{\"id\":\"1885\",\"title\":\"1885\",\"count\":6},{\"id\":\"1882\",\"title\":\"1882\",\"count\":8},{\"id\":\"1092\",\"title\":\"1092\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1832},{\"id\":\"2019\",\"title\":\"2019\",\"count\":15122},{\"id\":\"2018\",\"title\":\"2018\",\"count\":639},{\"id\":\"2017\",\"title\":\"2017\",\"count\":9},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2}],\"providers\":[{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":40568},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":3744},{\"id\":\"workshop\",\"title\":\"DataCite Training Workshop\",\"count\":30},{\"id\":\"bibtag\",\"title\":\"DataCite Workshop Bibliothekartag\",\"count\":23},{\"id\":\"sml\",\"title\":\"DataCite Provider\",\"count\":9}],\"clients\":[{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17295},{\"id\":\"demo.griidc\",\"title\":\"Gulf of Mexico Research Initiative Information and Data Cooperative\",\"count\":3550},{\"id\":\"datacite.edi\",\"title\":\"Environmental Data Initiative\",\"count\":1926},{\"id\":\"datacite.nasa\",\"title\":\"NASA\",\"count\":667},{\"id\":\"datacite.ghsl\",\"title\":\"Galter Health Sciences Library, Northwestern University\",\"count\":268},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":196},{\"id\":\"datacite.rph\",\"title\":\"DataCite Test RPH\",\"count\":188},{\"id\":\"datacite.bl\",\"title\":\"Brain-Life\",\"count\":139},{\"id\":\"datacite.dce\",\"title\":\"Data Curation Experts, LLC\",\"count\":133},{\"id\":\"demo.datacite\",\"title\":\"DataCite Staff Demo Client\",\"count\":123},{\"id\":\"datacite.mary\",\"title\":\"Mary test client\",\"count\":84},{\"id\":\"demo.und\",\"title\":\"University of Notre Dame\",\"count\":67},{\"id\":\"datacite.hbp\",\"title\":\"Human Brain Project\",\"count\":61},{\"id\":\"demo.shepherd\",\"title\":\"Shepherd Demo Account\",\"count\":58}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":19},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":5},{\"id\":\"ror.org/005cgd502\",\"title\":\"Digital Authentication Technologies (United States)\",\"count\":1},{\"id\":\"ror.org/02e2c7k09\",\"title\":\"Delft University of Technology\",\"count\":1},{\"id\":\"ror.org/036jqmy94\",\"title\":\"University of Iowa\",\"count\":1},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":1},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.33520\",\"title\":\"10.33520\",\"count\":19361},{\"id\":\"10.33522\",\"title\":\"10.33522\",\"count\":17295},{\"id\":\"10.33516\",\"title\":\"10.33516\",\"count\":3550},{\"id\":\"10.0311\",\"title\":\"10.0311\",\"count\":1926},{\"id\":\"10.24411\",\"title\":\"10.24411\",\"count\":667},{\"id\":\"10.24418\",\"title\":\"10.24418\",\"count\":269},{\"id\":\"10.70048\",\"title\":\"10.70048\",\"count\":189},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":145},{\"id\":\"10.0322\",\"title\":\"10.0322\",\"count\":139},{\"id\":\"10.24354\",\"title\":\"10.24354\",\"count\":133},{\"id\":\"10.70043\",\"title\":\"10.70043\",\"count\":117},{\"id\":\"10.70126\",\"title\":\"10.70126\",\"count\":83},{\"id\":\"10.25626\",\"title\":\"10.25626\",\"count\":66},{\"id\":\"10.24409\",\"title\":\"10.24409\",\"count\":61},{\"id\":\"10.33515\",\"title\":\"10.33515\",\"count\":58}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":21040},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":1917},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":1}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":20552},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":19623},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":260},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":177},{\"id\":\"test\",\"title\":\"Test\",\"count\":21}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":571},{\"id\":\"404\",\"title\":\"404\",\"count\":308},{\"id\":\"500\",\"title\":\"500\",\"count\":26},{\"id\":\"401\",\"title\":\"401\",\"count\":1}],\"linksChecked\":157,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":4627},{\"id\":\"1\",\"title\":\"1\",\"count\":79}],\"linkChecksSchemaOrgId\":38,\"linkChecksDcIdentifier\":5,\"linkChecksCitationDoi\":2,\"subjects\":[{\"id\":\"Disparities\",\"title\":\"Disparities\",\"count\":5457},{\"id\":\"Research\",\"title\":\"Research\",\"count\":3419},{\"id\":\"Health\",\"title\":\"Health\",\"count\":2319},{\"id\":\"studies\",\"title\":\"Studies\",\"count\":2054},{\"id\":\"Health Equity\",\"title\":\"Health Equity\",\"count\":1837},{\"id\":\"interventions\",\"title\":\"Interventions\",\"count\":1788},{\"id\":\"Practice\",\"title\":\"Practice\",\"count\":1528},{\"id\":\"Public Health\",\"title\":\"Public Health\",\"count\":1381},{\"id\":\"Policy\",\"title\":\"Policy\",\"count\":1352},{\"id\":\"Prenatal & Pediatric Health\",\"title\":\"Prenatal &Amp; Pediatric Health\",\"count\":1222},{\"id\":\"Access To Healthcare\",\"title\":\"Access To Healthcare\",\"count\":1192},{\"id\":\"Cancer\",\"title\":\"Cancer\",\"count\":972},{\"id\":\"Diabetes\",\"title\":\"Diabetes\",\"count\":847},{\"id\":\"Obesity\",\"title\":\"Obesity\",\"count\":770},{\"id\":\"outreach\",\"title\":\"Outreach\",\"count\":740}],\"citations\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":7}],\"views\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":181}],\"downloads\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":130}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=dc&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&consortium-id=dc&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 49906, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.33522/fk2/eloplc/fbiuzi\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33522/fk2/eloplc/fbiuzi\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33522/fk2/eloplc/fbiuzi\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hunt, Margaret Rose\",\"nameType\":\"Personal\",\"givenName\":\"Margaret Rose\",\"familyName\":\"Hunt\",\"affiliation\":[{\"name\":\"(University of Maryland)\"}]}],\"titles\":[{\"title\":\"TLND-I-C-n-75-a-100-p-10-d-3-e-2.dat\"}],\"publisher\":\"University of Maryland Dataverse\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.33522/FK2/ELOPLC\",\"identifierType\":\"DOI\"},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Hunt, Margaret Rose\",\"nameType\":\"Personal\",\"givenName\":\"Margaret Rose\",\"familyName\":\"Hunt\",\"affiliation\":[{\"name\":\"(University of Maryland)\"}],\"contributorType\":\"ContactPerson\"}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"doi:10.33522/fk2/eloplc\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\":unav\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataverse-pilot.lib.umd.edu/file.xhtml?persistentId=doi:10.33522/FK2/ELOPLC/FBIUZI\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-16T19:05:59.000Z\",\"registered\":\"2019-07-16T19:06:00.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"demo.umd\",\"type\":\"clients\"}}}},{\"id\":\"10.0322/bldev.app.23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0322/bldev.app.23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0322/bldev.app.23\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Split Shell\"}],\"publisher\":\"brainlife.io\",\"container\":{},\"publicationYear\":2017,\"subjects\":[{\"subject\":\"diffusion-preprocessing\"}],\"contributors\":[{\"name\":\"Kitchell, Lindsey\",\"nameType\":\"Personal\",\"givenName\":\"Lindsey\",\"familyName\":\"Kitchell\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Pestilli, Franco\",\"nameType\":\"Personal\",\"givenName\":\"Franco\",\"familyName\":\"Pestilli\",\"affiliation\":[],\"contributorType\":\"Other\"}],\"dates\":[{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Split multi-shell diffusion data into a single chosen b value shell while rounding bvals\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost.brainlife.io/app/592dec760188fd1eecf7b4ef\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-05T02:31:47.000Z\",\"registered\":\"2018-12-05T02:31:50.000Z\",\"published\":\"2017\",\"updated\":\"2020-05-04T10:31:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.bl\",\"type\":\"clients\"}}}},{\"id\":\"10.24354/kw52j8580\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24354/kw52j8580\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24354/kw52j8580\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Test\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"single pdf\"}],\"publisher\":\":unav\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"THES\",\"bibtex\":\"phdthesis\",\"citeproc\":\"thesis\",\"schemaOrg\":\"Thesis\",\"resourceType\":\"Dissertation\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"4.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://scholararchive.ohsu.edu/concern/etds/kw52j8580\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-05T22:55:24.000Z\",\"registered\":\"2019-11-05T22:55:25.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.dce\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/t0v4-zj71\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/t0v4-zj71\",\"identifiers\":[],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-07T13:07:50.000Z\",\"registered\":\"2019-06-07T13:08:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/927a80d5a03675c0a6b68d9e3f5c36c9\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/927a80d5a03675c0a6b68d9e3f5c36c9\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/927a80d5a03675c0a6b68d9e3f5c36c9\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://pasta-s.lternet.edu/package/eml/knb-lter-jrn/210122001/98\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Gillette, Dale\",\"nameType\":\"Personal\",\"givenName\":\"Dale\",\"familyName\":\"Gillette\",\"affiliation\":[]},{\"name\":\"Okin, Greg\",\"nameType\":\"Personal\",\"givenName\":\"Greg\",\"familyName\":\"Okin\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Crust Abrasion at Scrape Site on the Jornada Basin, 1995 to 2019\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"The project was designed to test the hypothesis that the abrasion of a\\n surface crust is proportional to the vertical flux of kinetic energy\\n delivered by saltating sand grains.This flux energy is related to the\\n mass flux of saltating grains. The site was selected since it had a\\n flat crust that was not greatly affected by atmospheric precipitation\\n or freeze/thaw and moistening/drying cycles. The objective of the\\n project was to measure the kinetic energy flux during saltation, the\\n mass flux of saltation particles, and to relate those fluxes to the\\n abrasion of the crust. Data collection is ongoing since 1995.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://portal-s.lternet.edu/nis/mapbrowse?packageid=knb-lter-jrn.210122001.98\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-02T18:01:26.000Z\",\"registered\":\"2019-07-02T18:01:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}},{\"id\":\"10.70048/mutaamba\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70048/mutaamba\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70048/mutaamba\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"CXC-DS\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb117337761\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info1008032-6\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 1781 4754\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn82072949\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czko2011425784\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr081072066\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org127863534\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org127863534\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]}],\"titles\":[{\"title\":\"Chandra X-ray Observatory ObsId 1\"}],\"publisher\":\"Chandra X-ray Center/SAO\",\"container\":{},\"publicationYear\":2000,\"subjects\":[{\"subject\":\"High Energy Astrophysics Data/X-ray Data\"},{\"subject\":\"X-ray astronomy\",\"schemeUri\":\"htp://id.loc.gov\",\"subjectScheme\":\"LCCN\"}],\"contributors\":[{\"name\":\"NASA\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"RightsHolder\",\"nameIdentifiers\":[{\"schemeUri\":\"http://catalogo.bne.es\",\"nameIdentifier\":\"http://catalogo.bne.esXX148293\",\"nameIdentifierScheme\":\"BNE\"},{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb11868484t\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info2294-9\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 1456 7559\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn78087581\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"https://kopkatalogs.lv\",\"nameIdentifier\":\"https://kopkatalogs.lv000175514\",\"nameIdentifierScheme\":\"LNB\"},{\"schemeUri\":\"http://musicbrainz.org\",\"nameIdentifier\":\"http://musicbrainz.org7e779bc3-c034-468b-9cc2-b3d99ad50cfd\",\"nameIdentifierScheme\":\"MusicBrainz\"},{\"schemeUri\":\"http://musicbrainz.org\",\"nameIdentifier\":\"http://musicbrainz.org811ff445-cd10-48c5-a3c3-c8ede74a9189\",\"nameIdentifierScheme\":\"MusicBrainz\"},{\"schemeUri\":\"http://ndl.go.jp\",\"nameIdentifier\":\"http://ndl.go.jp00276299\",\"nameIdentifierScheme\":\"NDL\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czkn20010711417\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"http://aleph.nli.org.il\",\"nameIdentifier\":\"http://aleph.nli.org.il000134189\",\"nameIdentifierScheme\":\"NLI\"},{\"schemeUri\":\"https://www.nsk.hr\",\"nameIdentifier\":\"https://www.nsk.hr000041310\",\"nameIdentifierScheme\":\"NSK\"},{\"schemeUri\":\"https://pic.nypl.org\",\"nameIdentifier\":\"https://pic.nypl.org328444\",\"nameIdentifierScheme\":\"PIC\"},{\"schemeUri\":\"https://libris.kb.se\",\"nameIdentifier\":\"https://libris.kb.se123881\",\"nameIdentifierScheme\":\"SELIBR\"},{\"schemeUri\":\"https://socialarchive.iath.virginia.edu\",\"nameIdentifier\":\"https://socialarchive.iath.virginia.eduw60w92qf\",\"nameIdentifierScheme\":\"SNAC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr027773299\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://collections.tepapa.govt.nz\",\"nameIdentifier\":\"https://collections.tepapa.govt.nz34284\",\"nameIdentifierScheme\":\"TePapa\"},{\"schemeUri\":\"http://www.getty.edu/research/tools/vocabularies/ulan\",\"nameIdentifier\":\"http://www.getty.edu/research/tools/vocabularies/ulan500265440\",\"nameIdentifierScheme\":\"ULAN\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org146202023\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org146202023\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]},{\"name\":\"Smithsonian Astrophysical Observatory\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb117337761\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info1008032-6\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 1781 4754\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn82072949\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czko2011425784\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr081072066\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org127863534\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org127863534\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]},{\"name\":\"Chandra Data Archive\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"Smithsonian Institution\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"RegistrationAgency\",\"nameIdentifiers\":[{\"schemeUri\":\"http://catalogo.bne.es\",\"nameIdentifier\":\"http://catalogo.bne.esXX145247\",\"nameIdentifierScheme\":\"BNE\"},{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb118671884\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info38076-3\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 2185 5671\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn79053968\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"http://musicbrainz.org\",\"nameIdentifier\":\"http://musicbrainz.org08f03b7d-97ae-496a-84cd-158ca6bbaca6\",\"nameIdentifierScheme\":\"MusicBrainz\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czko2004230768\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"https://librariesaustralia.nla.gov.au\",\"nameIdentifier\":\"https://librariesaustralia.nla.gov.au35508508\",\"nameIdentifierScheme\":\"NLA\"},{\"schemeUri\":\"https://socialarchive.iath.virginia.edu\",\"nameIdentifier\":\"https://socialarchive.iath.virginia.eduw69h69v0\",\"nameIdentifierScheme\":\"SNAC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr026421577\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://collections.tepapa.govt.nz\",\"nameIdentifier\":\"https://collections.tepapa.govt.nz39438\",\"nameIdentifierScheme\":\"TePapa\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org159805885\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org159805885\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]},{\"name\":\"Chandra Data Archive\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Distributor\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"1999-11-25T07:59:41\",\"dateType\":\"Collected\"},{\"date\":\"1999-12-10T00:00:00\",\"dateType\":\"Created\"},{\"date\":\"2000-12-14T18:00:00\",\"dateType\":\"Available\"},{\"date\":\"2000\",\"dateType\":\"Issued\"}],\"language\":\"EN-US\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Astronomical Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[\"ks 19.070619325143998\",\"26292663 bytes\"],\"formats\":[\"FITS\"],\"version\":\"6\",\"rightsList\":[{\"rights\":\"Public Data\"}],\"descriptions\":[{\"description\":\"ACIS OBSERVATION OF JUPITER AND THE GALILEAN SATELLITES\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPoint\":{\"pointLatitude\":\"8.72658\",\"pointLongitude\":\"24.7263\"}},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.54\",\"pointLongitude\":\"24.372\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59493\",\"pointLongitude\":\"24.5013\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59493\",\"pointLongitude\":\"24.5074\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59491\",\"pointLongitude\":\"24.5075\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46714\",\"pointLongitude\":\"24.5633\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46131\",\"pointLongitude\":\"24.5633\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.40636\",\"pointLongitude\":\"24.4339\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.40636\",\"pointLongitude\":\"24.4278\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.40639\",\"pointLongitude\":\"24.4278\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53417\",\"pointLongitude\":\"24.372\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.54\",\"pointLongitude\":\"24.372\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.72595\",\"pointLongitude\":\"24.4501\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59819\",\"pointLongitude\":\"24.506\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59235\",\"pointLongitude\":\"24.506\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53676\",\"pointLongitude\":\"24.3769\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53676\",\"pointLongitude\":\"24.3708\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53679\",\"pointLongitude\":\"24.3708\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.66449\",\"pointLongitude\":\"24.3148\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.66453\",\"pointLongitude\":\"24.3148\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.67036\",\"pointLongitude\":\"24.3148\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72595\",\"pointLongitude\":\"24.4439\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72595\",\"pointLongitude\":\"24.4501\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.46265\",\"pointLongitude\":\"24.5604\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46267\",\"pointLongitude\":\"24.5603\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59045\",\"pointLongitude\":\"24.5045\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59628\",\"pointLongitude\":\"24.5045\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65179\",\"pointLongitude\":\"24.6336\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65179\",\"pointLongitude\":\"24.6397\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65178\",\"pointLongitude\":\"24.6397\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.52398\",\"pointLongitude\":\"24.6955\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.51815\",\"pointLongitude\":\"24.6955\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46265\",\"pointLongitude\":\"24.5665\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46265\",\"pointLongitude\":\"24.5604\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.72734\",\"pointLongitude\":\"24.4472\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.78224\",\"pointLongitude\":\"24.5766\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.78224\",\"pointLongitude\":\"24.5828\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65445\",\"pointLongitude\":\"24.6386\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.64861\",\"pointLongitude\":\"24.6386\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59374\",\"pointLongitude\":\"24.5093\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59374\",\"pointLongitude\":\"24.5031\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59376\",\"pointLongitude\":\"24.5031\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72147\",\"pointLongitude\":\"24.4472\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72731\",\"pointLongitude\":\"24.4472\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72734\",\"pointLongitude\":\"24.4472\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.77712\",\"pointLongitude\":\"24.6299\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.77713\",\"pointLongitude\":\"24.6299\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.83243\",\"pointLongitude\":\"24.7593\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.83243\",\"pointLongitude\":\"24.7654\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.83242\",\"pointLongitude\":\"24.7654\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.70451\",\"pointLongitude\":\"24.8214\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.7045\",\"pointLongitude\":\"24.8214\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.69867\",\"pointLongitude\":\"24.8214\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.64339\",\"pointLongitude\":\"24.692\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.64339\",\"pointLongitude\":\"24.6858\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.6434\",\"pointLongitude\":\"24.6858\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.77129\",\"pointLongitude\":\"24.6299\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.77712\",\"pointLongitude\":\"24.6299\"}}]}],\"fundingReferences\":[{\"awardTitle\":\"Chandra X-ray Center\",\"funderName\":\"NASA\",\"awardNumber\":\"NAS-8-03060\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"https://doi.org/10.70048/mutaamba\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-20T09:22:39.000Z\",\"registered\":\"2019-12-20T09:22:40.000Z\",\"published\":\"2000\",\"updated\":\"2020-05-04T10:30:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.rph\",\"type\":\"clients\"}}}},{\"id\":\"10.70126/vnhf-ht55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70126/vnhf-ht55\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70126/vnhf-ht55\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Katavouta, Anna\",\"nameType\":\"Personal\",\"givenName\":\"Anna\",\"familyName\":\"Katavouta\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Williams, Ric\",\"nameType\":\"Personal\",\"givenName\":\"Ric\",\"familyName\":\"Williams\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Goodwin, Philip A\",\"nameType\":\"Personal\",\"givenName\":\"Philip A\",\"familyName\":\"Goodwin\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Roussenov, Vassil\",\"nameType\":\"Personal\",\"givenName\":\"Vassil\",\"familyName\":\"Roussenov\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Box model for the global surface warming response to carbon emissions: solving for heat and carbon exchange between the atmosphere and the ocean over 1000 years since the pre-industrial era\"}],\"publisher\":\"British Oceanographic Data Centre, National Oceanography Centre, NERC, UK\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"climatologyMeteorologyAtmosphere\",\"schemeUri\":\"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml\",\"subjectScheme\":\"MD_TopicCategoryCode\"},{\"subject\":\"oceans\",\"schemeUri\":\"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml\",\"subjectScheme\":\"MD_TopicCategoryCode\"}],\"contributors\":[],\"dates\":[{\"date\":\"1861-01-01/2861-01-01\",\"dateType\":\"Collected\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"Binary\",\"Delimited\"],\"version\":\"1\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"World\"}],\"fundingReferences\":[],\"url\":\"https://exmaple.org\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-09-12T10:32:49.000Z\",\"registered\":\"2019-09-12T10:33:03.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:02:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.mary\",\"type\":\"clients\"}}}},{\"id\":\"10.24410/kaust-0wgzf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24410/kaust-0wgzf\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24410/kaust-0wgzf\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://hdl.handle.net/123456789/640945\",\"identifierType\":\"Handle\"}],\"creators\":[{\"name\":\"Grenz, Daryl\",\"nameType\":\"Personal\",\"givenName\":\"Daryl\",\"familyName\":\"Grenz\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test DOI Minting\"}],\"publisher\":\"KAUST Research Repository\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://kaust.test.openrepository.comhandle/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-20T10:08:32.000Z\",\"registered\":\"2019-05-20T10:08:34.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:02:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":45728,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":26738},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":12624},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":6366}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":8148},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":474},{\"id\":\"text\",\"title\":\"Text\",\"count\":414},{\"id\":\"software\",\"title\":\"Software\",\"count\":161},{\"id\":\"other\",\"title\":\"Other\",\"count\":145},{\"id\":\"image\",\"title\":\"Image\",\"count\":50},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":34},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":21},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":12},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6009},{\"id\":\"2019\",\"title\":\"2019\",\"count\":18776},{\"id\":\"2018\",\"title\":\"2018\",\"count\":20915},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"published\":[{\"id\":\"2222\",\"title\":\"2222\",\"count\":2},{\"id\":\"2020\",\"title\":\"2020\",\"count\":3462},{\"id\":\"2019\",\"title\":\"2019\",\"count\":3499},{\"id\":\"2018\",\"title\":\"2018\",\"count\":347},{\"id\":\"2017\",\"title\":\"2017\",\"count\":313},{\"id\":\"2016\",\"title\":\"2016\",\"count\":511},{\"id\":\"2015\",\"title\":\"2015\",\"count\":249},{\"id\":\"2014\",\"title\":\"2014\",\"count\":360},{\"id\":\"2013\",\"title\":\"2013\",\"count\":392},{\"id\":\"2012\",\"title\":\"2012\",\"count\":874},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2860},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1343},{\"id\":\"2009\",\"title\":\"2009\",\"count\":1037},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1007},{\"id\":\"2007\",\"title\":\"2007\",\"count\":1276},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1322},{\"id\":\"2005\",\"title\":\"2005\",\"count\":1008},{\"id\":\"2004\",\"title\":\"2004\",\"count\":1243},{\"id\":\"2003\",\"title\":\"2003\",\"count\":738},{\"id\":\"2002\",\"title\":\"2002\",\"count\":646},{\"id\":\"2001\",\"title\":\"2001\",\"count\":593},{\"id\":\"2000\",\"title\":\"2000\",\"count\":592},{\"id\":\"1999\",\"title\":\"1999\",\"count\":147},{\"id\":\"1998\",\"title\":\"1998\",\"count\":99},{\"id\":\"1997\",\"title\":\"1997\",\"count\":55},{\"id\":\"1996\",\"title\":\"1996\",\"count\":40},{\"id\":\"1995\",\"title\":\"1995\",\"count\":71},{\"id\":\"1994\",\"title\":\"1994\",\"count\":75},{\"id\":\"1993\",\"title\":\"1993\",\"count\":29},{\"id\":\"1992\",\"title\":\"1992\",\"count\":34},{\"id\":\"1991\",\"title\":\"1991\",\"count\":17},{\"id\":\"1990\",\"title\":\"1990\",\"count\":23},{\"id\":\"1989\",\"title\":\"1989\",\"count\":6},{\"id\":\"1988\",\"title\":\"1988\",\"count\":10},{\"id\":\"1987\",\"title\":\"1987\",\"count\":5},{\"id\":\"1986\",\"title\":\"1986\",\"count\":6},{\"id\":\"1985\",\"title\":\"1985\",\"count\":17},{\"id\":\"1984\",\"title\":\"1984\",\"count\":6},{\"id\":\"1983\",\"title\":\"1983\",\"count\":8},{\"id\":\"1982\",\"title\":\"1982\",\"count\":7},{\"id\":\"1981\",\"title\":\"1981\",\"count\":5},{\"id\":\"1978\",\"title\":\"1978\",\"count\":11},{\"id\":\"1974\",\"title\":\"1974\",\"count\":6},{\"id\":\"1965\",\"title\":\"1965\",\"count\":1},{\"id\":\"1956\",\"title\":\"1956\",\"count\":6},{\"id\":\"1947\",\"title\":\"1947\",\"count\":17},{\"id\":\"1944\",\"title\":\"1944\",\"count\":6},{\"id\":\"1939\",\"title\":\"1939\",\"count\":5},{\"id\":\"1937\",\"title\":\"1937\",\"count\":6},{\"id\":\"1936\",\"title\":\"1936\",\"count\":6},{\"id\":\"1934\",\"title\":\"1934\",\"count\":5},{\"id\":\"1932\",\"title\":\"1932\",\"count\":106},{\"id\":\"1931\",\"title\":\"1931\",\"count\":1},{\"id\":\"1930\",\"title\":\"1930\",\"count\":5},{\"id\":\"1928\",\"title\":\"1928\",\"count\":6},{\"id\":\"1924\",\"title\":\"1924\",\"count\":9},{\"id\":\"1922\",\"title\":\"1922\",\"count\":6},{\"id\":\"1920\",\"title\":\"1920\",\"count\":1},{\"id\":\"1918\",\"title\":\"1918\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1},{\"id\":\"1885\",\"title\":\"1885\",\"count\":6},{\"id\":\"1882\",\"title\":\"1882\",\"count\":8},{\"id\":\"1092\",\"title\":\"1092\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3145},{\"id\":\"2019\",\"title\":\"2019\",\"count\":15127},{\"id\":\"2018\",\"title\":\"2018\",\"count\":639},{\"id\":\"2017\",\"title\":\"2017\",\"count\":9},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2}],\"providers\":[{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":41843},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":3823},{\"id\":\"workshop\",\"title\":\"DataCite Training Workshop\",\"count\":30},{\"id\":\"bibtag\",\"title\":\"DataCite Workshop Bibliothekartag\",\"count\":23},{\"id\":\"sml\",\"title\":\"DataCite Provider\",\"count\":9}],\"clients\":[{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17297},{\"id\":\"demo.griidc\",\"title\":\"Gulf of Mexico Research Initiative Information and Data Cooperative\",\"count\":4823},{\"id\":\"datacite.edi\",\"title\":\"Environmental Data Initiative\",\"count\":1964},{\"id\":\"datacite.nasa\",\"title\":\"NASA\",\"count\":667},{\"id\":\"datacite.ghsl\",\"title\":\"Galter Health Sciences Library, Northwestern University\",\"count\":269},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":196},{\"id\":\"datacite.rph\",\"title\":\"DataCite Test RPH\",\"count\":191},{\"id\":\"datacite.bl\",\"title\":\"Brain-Life\",\"count\":143},{\"id\":\"datacite.dce\",\"title\":\"Data Curation Experts, LLC\",\"count\":133}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":19},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":5},{\"id\":\"ror.org/005cgd502\",\"title\":\"Digital Authentication Technologies (United States)\",\"count\":1},{\"id\":\"ror.org/02e2c7k09\",\"title\":\"Delft University of Technology\",\"count\":1},{\"id\":\"ror.org/036jqmy94\",\"title\":\"University of Iowa\",\"count\":1},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":1},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.33520\",\"title\":\"10.33520\",\"count\":19361},{\"id\":\"10.33522\",\"title\":\"10.33522\",\"count\":17297},{\"id\":\"10.33516\",\"title\":\"10.33516\",\"count\":4823},{\"id\":\"10.0311\",\"title\":\"10.0311\",\"count\":1964},{\"id\":\"10.24411\",\"title\":\"10.24411\",\"count\":667},{\"id\":\"10.24418\",\"title\":\"10.24418\",\"count\":270},{\"id\":\"10.70048\",\"title\":\"10.70048\",\"count\":192},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":145},{\"id\":\"10.0322\",\"title\":\"10.0322\",\"count\":143},{\"id\":\"10.24354\",\"title\":\"10.24354\",\"count\":133}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":22831},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":1918},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":574},{\"id\":\"404\",\"title\":\"404\",\"count\":328},{\"id\":\"500\",\"title\":\"500\",\"count\":24},{\"id\":\"401\",\"title\":\"401\",\"count\":1}],\"citations\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":7}],\"views\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":181}],\"downloads\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":130}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=dc&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&consortium-id=dc&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -206,8 +206,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:35.358Z", - "time": 285, + "startedDateTime": "2020-05-04T16:41:01.483Z", + "time": 302, "timings": { "blocked": -1, "connect": -1, @@ -215,11 +215,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 285 + "wait": 302 } }, { - "_id": "f333333e0c11a145bb50c1470abf6178", + "_id": "65399951cfbfa8d58d99fd6a4643609e", "_order": 0, "cache": {}, "request": { @@ -235,136 +235,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 730, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.transfer" - }, - "response": { - "bodySize": 660, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 660, - "text": "{\"data\":{\"id\":\"datacite.transfer\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Transfer Test\",\"symbol\":\"DATACITE.TRANSFER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-22T10:48:20.000Z\",\"updated\":\"2019-07-30T06:59:15.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},\"meta\":{\"doiCount\":8,\"prefixCount\":0}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 322, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 322 - } - }, - { - "_id": "7f21a9faa0d3ca970942f2c1b6f341be", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 721, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/demo.cos" - }, - "response": { - "bodySize": 682, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 682, - "text": "{\"data\":{\"id\":\"demo.cos\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for Open Science\",\"symbol\":\"DEMO.COS\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"sara@cos.io\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-04-04T16:42:53.000Z\",\"updated\":\"2018-08-26T01:31:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70102\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":38,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 386, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 386 - } - }, - { - "_id": "3b3ffb184cb145e8c1fa693f3e340e86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 730, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.datacite" + "url": "https://api.test.datacite.org/repositories/datacite.dce" }, "response": { - "bodySize": 923, + "bodySize": 710, "content": { "mimeType": "application/json; charset=utf-8", - "size": 923, - "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3}}" + "size": 710, + "text": "{\"data\":{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":133,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -383,8 +265,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 625, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 328, "timings": { "blocked": -1, "connect": -1, @@ -392,7 +274,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 625 + "wait": 328 } }, { @@ -423,66 +305,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 699, - "text": "{\"data\":{\"id\":\"demo.umd\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University of Maryland Libraries\",\"symbol\":\"DEMO.UMD\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"katedohe@umd.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-11-01T09:37:13.000Z\",\"updated\":\"2018-11-01T15:07:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33522\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":17295,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 634, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 634 - } - }, - { - "_id": "e2831a55060530a68b1087aa3e2cd861", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 726, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.test" - }, - "response": { - "bodySize": 742, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 742, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "text": "{\"data\":{\"id\":\"demo.umd\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University of Maryland Libraries\",\"symbol\":\"DEMO.UMD\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"katedohe@umd.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-11-01T09:37:13.000Z\",\"updated\":\"2018-11-01T15:07:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33522\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":17297,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -501,8 +324,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 689, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 330, "timings": { "blocked": -1, "connect": -1, @@ -510,11 +333,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 689 + "wait": 330 } }, { - "_id": "6a90dd166b783152399986c05ae82105", + "_id": "a320f54cdcec048ee58f8af8d3fcc5d6", "_order": 0, "cache": {}, "request": { @@ -534,73 +357,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/demo.griidc" - }, - "response": { - "bodySize": 747, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 747, - "text": "{\"data\":{\"id\":\"demo.griidc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Gulf of Mexico Research Initiative Information and Data Cooperative\",\"symbol\":\"DEMO.GRIIDC\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"rosalie.rossi@tamucc.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-09-26T06:23:20.000Z\",\"updated\":\"2018-09-26T16:34:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33516\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3550,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 892, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 892 - } - }, - { - "_id": "242205a81780785e2da39cb924aabdb3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 726, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.ghsl" + "url": "https://api.test.datacite.org/repositories/datacite.bl" }, "response": { - "bodySize": 743, + "bodySize": 683, "content": { "mimeType": "application/json; charset=utf-8", - "size": 743, - "text": "{\"data\":{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":268,\"prefixCount\":1}}" + "size": 683, + "text": "{\"data\":{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":143,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -619,8 +383,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 895, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 332, "timings": { "blocked": -1, "connect": -1, @@ -628,11 +392,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 895 + "wait": 332 } }, { - "_id": "77b265592e9c515fef89646f76ba207b", + "_id": "36637d8ce972d45aa1f55b6b6f2d98a5", "_order": 0, "cache": {}, "request": { @@ -648,18 +412,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.mary" + "url": "https://api.test.datacite.org/repositories/datacite.rph" }, "response": { - "bodySize": 692, + "bodySize": 731, "content": { "mimeType": "application/json; charset=utf-8", - "size": 692, - "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-02-25T17:07:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":84,\"prefixCount\":1}}" + "size": 731, + "text": "{\"data\":{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":191,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -678,8 +442,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 905, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 536, "timings": { "blocked": -1, "connect": -1, @@ -687,11 +451,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 905 + "wait": 536 } }, { - "_id": "a320f54cdcec048ee58f8af8d3fcc5d6", + "_id": "212204dc1e37052dbe3e93c9813186ba", "_order": 0, "cache": {}, "request": { @@ -707,18 +471,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 724, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.bl" + "url": "https://api.test.datacite.org/repositories/datacite.edi" }, "response": { - "bodySize": 683, + "bodySize": 713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 683, - "text": "{\"data\":{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":139,\"prefixCount\":1}}" + "size": 713, + "text": "{\"data\":{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1964,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -737,8 +501,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1118, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 540, "timings": { "blocked": -1, "connect": -1, @@ -746,11 +510,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1118 + "wait": 540 } }, { - "_id": "3f02e1dffdcc9ae40abf558fb2b177a1", + "_id": "151261db548068ab9a31adb5cc7365bd", "_order": 0, "cache": {}, "request": { @@ -766,18 +530,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 727, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/demo.shepherd" + "url": "https://api.test.datacite.org/repositories/datacite.kaust" }, "response": { - "bodySize": 694, + "bodySize": 741, "content": { "mimeType": "application/json; charset=utf-8", - "size": 694, - "text": "{\"data\":{\"id\":\"demo.shepherd\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Shepherd Demo Account\",\"symbol\":\"DEMO.SHEPHERD\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"kim@shepherd.nz\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-09-23T07:33:06.000Z\",\"updated\":\"2018-09-23T07:41:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33515\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":58,\"prefixCount\":1}}" + "size": 741, + "text": "{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":13,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -796,8 +560,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1127, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 603, "timings": { "blocked": -1, "connect": -1, @@ -805,11 +569,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1127 + "wait": 603 } }, { - "_id": "212204dc1e37052dbe3e93c9813186ba", + "_id": "3b3ffb184cb145e8c1fa693f3e340e86", "_order": 0, "cache": {}, "request": { @@ -825,18 +589,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 730, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.edi" + "url": "https://api.test.datacite.org/repositories/datacite.datacite" }, "response": { - "bodySize": 713, + "bodySize": 923, "content": { "mimeType": "application/json; charset=utf-8", - "size": 713, - "text": "{\"data\":{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1926,\"prefixCount\":1}}" + "size": 923, + "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3}}" }, "cookies": [], "headers": [ @@ -855,8 +619,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1134, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 1364, "timings": { "blocked": -1, "connect": -1, @@ -864,11 +628,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1134 + "wait": 1364 } }, { - "_id": "c43438dca0b1ee1788b44f66314b9962", + "_id": "77b265592e9c515fef89646f76ba207b", "_order": 0, "cache": {}, "request": { @@ -884,549 +648,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 728, + "headersSize": 726, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.atmire" + "url": "https://api.test.datacite.org/repositories/datacite.mary" }, "response": { - "bodySize": 723, + "bodySize": 690, "content": { "mimeType": "application/json; charset=utf-8", - "size": 723, - "text": "{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":14,\"prefixCount\":2}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1403, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1403 - } - }, - { - "_id": "507e31923f81d0ffe632b5f78b5fa94a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 724, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/sml.cyverse" - }, - "response": { - "bodySize": 678, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 678, - "text": "{\"data\":{\"id\":\"sml.cyverse\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CyVerse\",\"symbol\":\"SML.CYVERSE\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"core-sw@cyverse.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-11-13T18:18:05.000Z\",\"updated\":\"2018-11-13T22:27:48.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":9,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1425, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1425 - } - }, - { - "_id": "dc7f6220f024e559957cfd8582b75a0f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 728, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.becker" - }, - "response": { - "bodySize": 711, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 711, - "text": "{\"data\":{\"id\":\"datacite.becker\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Pascal Becker's test account\",\"symbol\":\"DATACITE.BECKER\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"pascal@the-library-code.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-01T11:09:54.000Z\",\"updated\":\"2019-11-01T11:10:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7968\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":10,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1503, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1503 - } - }, - { - "_id": "c8561b633a156453b371beaa08e17c67", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 725, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/demo.icrisat" - }, - "response": { - "bodySize": 698, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 698, - "text": "{\"data\":{\"id\":\"demo.icrisat\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ICRISAT Dataverse Network\",\"symbol\":\"DEMO.ICRISAT\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"s.chukka@cgiar.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-11-12T09:17:50.000Z\",\"updated\":\"2018-12-05T06:24:49.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33523\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1623, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1623 - } - }, - { - "_id": "060341b9dea1e43fea249e97d72ba142", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 730, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.services" - }, - "response": { - "bodySize": 734, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 734, - "text": "{\"data\":{\"id\":\"datacite.services\",\"type\":\"repositories\",\"attributes\":{\"name\":\"PID Services Registry\",\"symbol\":\"DATACITE.SERVICES\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"info@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"https://test.pidservices.org\",\"salesforceId\":null,\"created\":\"2019-03-30T06:52:24.000Z\",\"updated\":\"2019-03-30T06:52:24.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24427\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1699, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1699 - } - }, - { - "_id": "361573f2c757774b6c6ab7b427eae248", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 727, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.axiom" - }, - "response": { - "bodySize": 714, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 714, - "text": "{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1709, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1709 - } - }, - { - "_id": "e35cae67c054ba8d97b80efaa44a7d37", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 722, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/demo.iris" - }, - "response": { - "bodySize": 772, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 772, - "text": "{\"data\":{\"id\":\"demo.iris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Incorporated Research Institutions for Seismology\",\"symbol\":\"DEMO.IRIS\",\"re3data\":\"https://doi.org/10.17616/R3X607\",\"opendoar\":null,\"year\":2018,\"systemEmail\":\"adam@iris.washington.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"http://www.iris.edu/hq/\",\"salesforceId\":null,\"created\":\"2018-04-18T12:18:50.000Z\",\"updated\":\"2018-11-24T14:54:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70044\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":5,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 1832, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1832 - } - }, - { - "_id": "fe380e0d2136e749acc6391f8c15e720", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 728, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.globus" - }, - "response": { - "bodySize": 688, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 688, - "text": "{\"data\":{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 2630, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2630 - } - }, - { - "_id": "151261db548068ab9a31adb5cc7365bd", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 727, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.kaust" - }, - "response": { - "bodySize": 741, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 741, - "text": "{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":13,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 2717, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2717 - } - }, - { - "_id": "36637d8ce972d45aa1f55b6b6f2d98a5", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 725, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.rph" - }, - "response": { - "bodySize": 731, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 731, - "text": "{\"data\":{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":188,\"prefixCount\":1}}" + "size": 690, + "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-04-29T09:51:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":87,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1445,8 +678,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:36.624Z", - "time": 2989, + "startedDateTime": "2020-05-04T16:41:02.709Z", + "time": 1456, "timings": { "blocked": -1, "connect": -1, @@ -1454,7 +687,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 2989 + "wait": 1456 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-info_1454968374/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-info_1454968374/recording.har index be19c1266..0f648a015 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-info_1454968374/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-info_1454968374/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/visiting provider DC info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:30.642Z", - "time": 202, + "startedDateTime": "2020-05-04T16:40:57.398Z", + "time": 217, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 202 + "wait": 217 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc/stats" }, "response": { - "bodySize": 1807, + "bodySize": 1768, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1807, - "text": "{\"providers\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2},{\"id\":\"2012\",\"title\":\"2012\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2018\",\"title\":\"2018\",\"count\":5},{\"id\":\"2019\",\"title\":\"2019\",\"count\":6},{\"id\":\"2020\",\"title\":\"2020\",\"count\":9}],\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2015\",\"title\":\"2015\",\"count\":4},{\"id\":\"2016\",\"title\":\"2016\",\"count\":6},{\"id\":\"2017\",\"title\":\"2017\",\"count\":33},{\"id\":\"2018\",\"title\":\"2018\",\"count\":94},{\"id\":\"2019\",\"title\":\"2019\",\"count\":99},{\"id\":\"2020\",\"title\":\"2020\",\"count\":104}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4660},{\"id\":\"2019\",\"title\":\"2019\",\"count\":18771},{\"id\":\"2018\",\"title\":\"2018\",\"count\":20915},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":6836},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":473},{\"id\":\"text\",\"title\":\"Text\",\"count\":408},{\"id\":\"software\",\"title\":\"Software\",\"count\":156},{\"id\":\"other\",\"title\":\"Other\",\"count\":145},{\"id\":\"image\",\"title\":\"Image\",\"count\":50},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":34},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":21},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":12},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1}]}" + "size": 1768, + "text": "{\"providers\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2},{\"id\":\"2012\",\"title\":\"2012\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2018\",\"title\":\"2018\",\"count\":5},{\"id\":\"2019\",\"title\":\"2019\",\"count\":6}],\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2015\",\"title\":\"2015\",\"count\":4},{\"id\":\"2016\",\"title\":\"2016\",\"count\":6},{\"id\":\"2017\",\"title\":\"2017\",\"count\":33},{\"id\":\"2018\",\"title\":\"2018\",\"count\":94},{\"id\":\"2019\",\"title\":\"2019\",\"count\":99},{\"id\":\"2020\",\"title\":\"2020\",\"count\":104}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6009},{\"id\":\"2019\",\"title\":\"2019\",\"count\":18776},{\"id\":\"2018\",\"title\":\"2018\",\"count\":20915},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":8148},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":474},{\"id\":\"text\",\"title\":\"Text\",\"count\":414},{\"id\":\"software\",\"title\":\"Software\",\"count\":161},{\"id\":\"other\",\"title\":\"Other\",\"count\":145},{\"id\":\"image\",\"title\":\"Image\",\"count\":50},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":34},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":21},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":12},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:30.945Z", - "time": 259, + "startedDateTime": "2020-05-04T16:40:57.739Z", + "time": 231, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 259 + "wait": 231 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-prefixes_1897032602/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-prefixes_1897032602/recording.har index f554b1654..6d270832d 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-prefixes_1897032602/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-prefixes_1897032602/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/visiting provider DC prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:39.852Z", - "time": 264, + "startedDateTime": "2020-05-04T16:41:04.308Z", + "time": 207, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 264 + "wait": 207 } }, { @@ -143,11 +143,11 @@ "url": "https://api.test.datacite.org/provider-prefixes?client-id=&consortium-id=dc&consortium-organization-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 12428, + "bodySize": 12136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 12428, - "text": "{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-30T06:10:40.000Z\",\"updatedAt\":\"2020-04-18T04:09:48.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]}}},{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T12:00:35.000Z\",\"updatedAt\":\"2020-03-22T08:12:41.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T10:33:16.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-11-10T09:41:25.000Z\",\"updatedAt\":\"2019-11-10T09:41:25.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"683f5012-9129-40ea-bf05-a7056acd8b01\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-09-16T13:33:17.000Z\",\"updatedAt\":\"2019-09-16T13:33:17.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80040\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"b8150784-0b22-4ff0-b337-e58dc047b9ea\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"cf83db86-c278-422e-a5f7-6f1e30f6f5be\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-08-05T12:03:24.000Z\",\"updatedAt\":\"2019-08-05T12:03:24.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80010\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"sml.tdar\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"dca90b10-7f7d-46aa-abe9-0a12263409ac\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-08-02T07:02:34.000Z\",\"updatedAt\":\"2019-08-02T07:02:34.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T16:24:00.000Z\",\"updatedAt\":\"2019-06-25T16:24:00.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T12:37:16.000Z\",\"updatedAt\":\"2019-06-25T12:37:16.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-05-27T07:58:19.000Z\",\"updatedAt\":\"2019-05-27T07:58:19.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a7a15bb8-b9bb-46c3-93ab-57f9963946a7\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-04-09T14:39:37.000Z\",\"updatedAt\":\"2019-04-09T14:39:37.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70102\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"21e73c47-0576-489e-92c1-3703f4932cac\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"159ae612-f518-410e-9a7d-d04e57f98ab8\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:47.000Z\",\"updatedAt\":\"2018-12-10T07:29:47.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21358\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"4be50e40-6961-453a-9a81-6d630aa0f040\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"9ca76b52-c41e-49dc-989d-46796220f54e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:43.000Z\",\"updatedAt\":\"2018-12-10T07:29:43.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21357\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"2f8424a4-1ebf-400d-9ce4-f13853cf30c7\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"e1a4a14a-32e6-4842-9610-0c3b99ea719e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:40.000Z\",\"updatedAt\":\"2018-12-10T07:29:40.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21356\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.zbmed\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"8e4bcf10-accc-4de8-92b7-303c23859f54\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"1118ec3a-ef78-4f62-9635-cb094646ef2e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:35.000Z\",\"updatedAt\":\"2018-12-10T07:29:35.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21355\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.tib\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ff27a3fb-4d5f-43f1-b948-1c3f4988f38b\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"d569ecab-cba9-4019-b0bf-1d04aa6e3aea\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:30.000Z\",\"updatedAt\":\"2018-12-10T07:29:30.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21354\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.slsi\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e8c61733-ae2f-496e-9a68-3ae212099c3d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"697a7007-595f-43d4-8ddf-8f9725046152\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:26.000Z\",\"updatedAt\":\"2018-12-10T07:29:26.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21352\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bcc992ef-508e-4e1a-a79d-4966cb3e3e39\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c363e1f8-d890-448e-a5ce-55369071c5c1\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:22.000Z\",\"updatedAt\":\"2018-12-10T07:29:22.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21351\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.ici\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"fdd5de94-1767-44da-938b-68b750077eb4\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"27ebc572-3e0e-40d6-80f0-6e634ff957b7\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:19.000Z\",\"updatedAt\":\"2018-12-10T07:29:19.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21349\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.hab\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d42a9851-0340-4fac-8884-7d4fbce09256\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"2a049142-4ca7-4cd2-a2f0-9ee13d37792e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:15.000Z\",\"updatedAt\":\"2018-12-10T07:29:15.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21345\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.gwdg\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9952f894-9478-4a04-99d6-acfa255bf1ee\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c8e86bc7-6698-4df6-97c5-b45704084f5a\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:11.000Z\",\"updatedAt\":\"2018-12-10T07:29:11.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21344\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.dlr\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d41f261e-2daa-45c6-89b8-87f86961d971\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"97d7fee0-5eb2-43d1-9b27-d40d5cad212b\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:07.000Z\",\"updatedAt\":\"2018-12-10T07:29:07.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21343\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.bsb\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9dd9d06f-314d-4396-9836-93c12ea1551d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"ff871c82-526e-4b73-a86b-8f36b326beac\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:03.000Z\",\"updatedAt\":\"2018-12-10T07:29:03.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21342\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5ef41c27-cbbe-49c0-8ed2-b8b926a3256e\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"22380aa2-6e74-4af4-95bf-031c9fa1caab\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:22:09.000Z\",\"updatedAt\":\"2018-12-10T07:22:09.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24429\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.era3\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5fd48eab-85d9-47c9-81c7-c6fb5542ee78\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"7781aaca-f316-476a-940e-d4c8dd680fb1\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:22:05.000Z\",\"updatedAt\":\"2018-12-10T07:22:05.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24424\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.era2\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"363b66b0-573d-4ec1-8241-958abceeb1e2\",\"type\":\"client-prefixes\"}]}}}],\"meta\":{\"total\":95,\"totalPages\":4,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":8},{\"id\":\"2018\",\"title\":\"2018\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":12},{\"id\":\"2016\",\"title\":\"2016\",\"count\":28},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":90},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":5}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":20},{\"id\":\"workshop\",\"title\":\"DataCite Training Workshop\",\"count\":15},{\"id\":\"bibtag\",\"title\":\"DataCite Workshop Bibliothekartag\",\"count\":3},{\"id\":\"sml\",\"title\":\"DataCite Provider\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/provider-prefixes?client-id=&consortium-id=dc&consortium-organization-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/provider_prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=&year=\"}}" + "size": 12136, + "text": "{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-30T06:10:40.000Z\",\"updatedAt\":\"2020-04-18T04:09:48.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]}}},{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T12:00:35.000Z\",\"updatedAt\":\"2020-03-22T08:12:41.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T10:33:16.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-11-10T09:41:25.000Z\",\"updatedAt\":\"2019-11-10T09:41:25.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"683f5012-9129-40ea-bf05-a7056acd8b01\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-09-16T13:33:17.000Z\",\"updatedAt\":\"2019-09-16T13:33:17.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80040\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"b8150784-0b22-4ff0-b337-e58dc047b9ea\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"cf83db86-c278-422e-a5f7-6f1e30f6f5be\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-08-05T12:03:24.000Z\",\"updatedAt\":\"2019-08-05T12:03:24.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80010\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"sml.tdar\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"dca90b10-7f7d-46aa-abe9-0a12263409ac\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-08-02T07:02:34.000Z\",\"updatedAt\":\"2019-08-02T07:02:34.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T16:24:00.000Z\",\"updatedAt\":\"2019-06-25T16:24:00.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T12:37:16.000Z\",\"updatedAt\":\"2019-06-25T12:37:16.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-05-27T07:58:19.000Z\",\"updatedAt\":\"2019-05-27T07:58:19.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a7a15bb8-b9bb-46c3-93ab-57f9963946a7\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-04-09T14:39:37.000Z\",\"updatedAt\":\"2019-04-09T14:39:37.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70102\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"21e73c47-0576-489e-92c1-3703f4932cac\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"159ae612-f518-410e-9a7d-d04e57f98ab8\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:47.000Z\",\"updatedAt\":\"2018-12-10T07:29:47.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21358\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"4be50e40-6961-453a-9a81-6d630aa0f040\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"9ca76b52-c41e-49dc-989d-46796220f54e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:43.000Z\",\"updatedAt\":\"2018-12-10T07:29:43.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21357\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"2f8424a4-1ebf-400d-9ce4-f13853cf30c7\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"e1a4a14a-32e6-4842-9610-0c3b99ea719e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:40.000Z\",\"updatedAt\":\"2018-12-10T07:29:40.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21356\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.zbmed\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"8e4bcf10-accc-4de8-92b7-303c23859f54\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"1118ec3a-ef78-4f62-9635-cb094646ef2e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:35.000Z\",\"updatedAt\":\"2018-12-10T07:29:35.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21355\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.tib\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ff27a3fb-4d5f-43f1-b948-1c3f4988f38b\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"d569ecab-cba9-4019-b0bf-1d04aa6e3aea\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:30.000Z\",\"updatedAt\":\"2018-12-10T07:29:30.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21354\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.slsi\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e8c61733-ae2f-496e-9a68-3ae212099c3d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"697a7007-595f-43d4-8ddf-8f9725046152\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:26.000Z\",\"updatedAt\":\"2018-12-10T07:29:26.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21352\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bcc992ef-508e-4e1a-a79d-4966cb3e3e39\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c363e1f8-d890-448e-a5ce-55369071c5c1\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:22.000Z\",\"updatedAt\":\"2018-12-10T07:29:22.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21351\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.ici\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"fdd5de94-1767-44da-938b-68b750077eb4\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"27ebc572-3e0e-40d6-80f0-6e634ff957b7\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:19.000Z\",\"updatedAt\":\"2018-12-10T07:29:19.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21349\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.hab\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d42a9851-0340-4fac-8884-7d4fbce09256\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"2a049142-4ca7-4cd2-a2f0-9ee13d37792e\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:15.000Z\",\"updatedAt\":\"2018-12-10T07:29:15.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21345\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.gwdg\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9952f894-9478-4a04-99d6-acfa255bf1ee\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c8e86bc7-6698-4df6-97c5-b45704084f5a\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:11.000Z\",\"updatedAt\":\"2018-12-10T07:29:11.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21344\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.dlr\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d41f261e-2daa-45c6-89b8-87f86961d971\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"97d7fee0-5eb2-43d1-9b27-d40d5cad212b\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:07.000Z\",\"updatedAt\":\"2018-12-10T07:29:07.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21343\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.bsb\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9dd9d06f-314d-4396-9836-93c12ea1551d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"ff871c82-526e-4b73-a86b-8f36b326beac\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:29:03.000Z\",\"updatedAt\":\"2018-12-10T07:29:03.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.21342\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5ef41c27-cbbe-49c0-8ed2-b8b926a3256e\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"22380aa2-6e74-4af4-95bf-031c9fa1caab\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:22:09.000Z\",\"updatedAt\":\"2018-12-10T07:22:09.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24429\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.era3\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5fd48eab-85d9-47c9-81c7-c6fb5542ee78\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"7781aaca-f316-476a-940e-d4c8dd680fb1\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-12-10T07:22:05.000Z\",\"updatedAt\":\"2018-12-10T07:22:05.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24424\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"workshop.era2\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"363b66b0-573d-4ec1-8241-958abceeb1e2\",\"type\":\"client-prefixes\"}]}}}],\"meta\":{\"total\":95,\"totalPages\":4,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":8},{\"id\":\"2018\",\"title\":\"2018\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":12},{\"id\":\"2016\",\"title\":\"2016\",\"count\":28},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":90},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":5}],\"providers\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/provider-prefixes?client-id=&consortium-id=dc&consortium-organization-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/provider_prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -166,8 +166,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:40.142Z", - "time": 268, + "startedDateTime": "2020-05-04T16:41:04.530Z", + "time": 264, "timings": { "blocked": -1, "connect": -1, @@ -175,7 +175,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 268 + "wait": 264 } }, { @@ -225,8 +225,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 139, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 167, "timings": { "blocked": -1, "connect": -1, @@ -234,11 +234,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 167 } }, { - "_id": "64bcf2dcad6895b97a2f832bc2e6ede1", + "_id": "8c690ce20943a4b97e8af5527915ae25", "_order": 0, "cache": {}, "request": { @@ -258,14 +258,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80220" + "url": "https://api.test.datacite.org/prefixes/10.24413" }, "response": { - "bodySize": 458, + "bodySize": 350, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80220\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 350, + "text": "{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24413\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -284,8 +284,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 159, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 208, "timings": { "blocked": -1, "connect": -1, @@ -293,11 +293,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 159 + "wait": 208 } }, { - "_id": "8c690ce20943a4b97e8af5527915ae25", + "_id": "64bcf2dcad6895b97a2f832bc2e6ede1", "_order": 0, "cache": {}, "request": { @@ -317,14 +317,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24413" + "url": "https://api.test.datacite.org/prefixes/10.80220" }, "response": { - "bodySize": 350, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 350, - "text": "{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24413\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80220\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -343,8 +343,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 169, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 218, "timings": { "blocked": -1, "connect": -1, @@ -352,11 +352,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 169 + "wait": 218 } }, { - "_id": "c43438dca0b1ee1788b44f66314b9962", + "_id": "e321ea5048e7c9cab98aaa5f4ff0ff9b", "_order": 0, "cache": {}, "request": { @@ -372,18 +372,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 728, + "headersSize": 717, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.atmire" + "url": "https://api.test.datacite.org/prefixes/10.80067" }, "response": { - "bodySize": 723, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 723, - "text": "{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":14,\"prefixCount\":2}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80067\",\"createdAt\":\"2019-07-03T13:59:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -402,8 +402,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 244, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 226, "timings": { "blocked": -1, "connect": -1, @@ -411,11 +411,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 244 + "wait": 226 } }, { - "_id": "bb7d9585abf2698ae90b051c1e23ffa4", + "_id": "68140ac5022d2456d02fdb7c5c9c2c34", "_order": 0, "cache": {}, "request": { @@ -435,14 +435,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80010" + "url": "https://api.test.datacite.org/prefixes/10.80040" }, "response": { - "bodySize": 449, + "bodySize": 448, "content": { "mimeType": "application/json; charset=utf-8", - "size": 449, - "text": "{\"data\":{\"id\":\"10.80010\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80010\",\"createdAt\":\"2019-07-03T13:59:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.tdar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"sml\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"dca90b10-7f7d-46aa-abe9-0a12263409ac\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cf83db86-c278-422e-a5f7-6f1e30f6f5be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 448, + "text": "{\"data\":{\"id\":\"10.80040\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80040\",\"createdAt\":\"2019-07-03T13:59:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"sml\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"b8150784-0b22-4ff0-b337-e58dc047b9ea\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"683f5012-9129-40ea-bf05-a7056acd8b01\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -461,8 +461,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 247, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 243, "timings": { "blocked": -1, "connect": -1, @@ -470,11 +470,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 247 + "wait": 243 } }, { - "_id": "77b265592e9c515fef89646f76ba207b", + "_id": "e2831a55060530a68b1087aa3e2cd861", "_order": 0, "cache": {}, "request": { @@ -494,14 +494,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.mary" + "url": "https://api.test.datacite.org/repositories/datacite.test" }, "response": { - "bodySize": 692, + "bodySize": 742, "content": { "mimeType": "application/json; charset=utf-8", - "size": 692, - "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-02-25T17:07:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":84,\"prefixCount\":1}}" + "size": 742, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -520,8 +520,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 255, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 248, "timings": { "blocked": -1, "connect": -1, @@ -529,11 +529,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 255 + "wait": 248 } }, { - "_id": "7f21a9faa0d3ca970942f2c1b6f341be", + "_id": "3c64dc3c27fd04d4aa1dc60b55d8647f", "_order": 0, "cache": {}, "request": { @@ -549,18 +549,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 721, + "headersSize": 717, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/demo.cos" + "url": "https://api.test.datacite.org/prefixes/10.33576" }, "response": { - "bodySize": 682, + "bodySize": 460, "content": { "mimeType": "application/json; charset=utf-8", - "size": 682, - "text": "{\"data\":{\"id\":\"demo.cos\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for Open Science\",\"symbol\":\"DEMO.COS\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"sara@cos.io\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-04-04T16:42:53.000Z\",\"updated\":\"2018-08-26T01:31:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70102\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":38,\"prefixCount\":1}}" + "size": 460, + "text": "{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33576\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -579,8 +579,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 272, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 309, "timings": { "blocked": -1, "connect": -1, @@ -588,11 +588,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 272 + "wait": 309 } }, { - "_id": "dc7f6220f024e559957cfd8582b75a0f", + "_id": "0a1608e22e7e666cd4f81d5266ceb42c", "_order": 0, "cache": {}, "request": { @@ -608,18 +608,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 728, + "headersSize": 716, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.becker" + "url": "https://api.test.datacite.org/prefixes/10.7968" }, "response": { - "bodySize": 711, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 711, - "text": "{\"data\":{\"id\":\"datacite.becker\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Pascal Becker's test account\",\"symbol\":\"DATACITE.BECKER\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"pascal@the-library-code.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-01T11:09:54.000Z\",\"updated\":\"2019-11-01T11:10:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7968\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":10,\"prefixCount\":1}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.7968\",\"createdAt\":\"2019-06-28T10:46:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -638,8 +638,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 282, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 330, "timings": { "blocked": -1, "connect": -1, @@ -647,11 +647,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 282 + "wait": 330 } }, { - "_id": "68140ac5022d2456d02fdb7c5c9c2c34", + "_id": "bb7d9585abf2698ae90b051c1e23ffa4", "_order": 0, "cache": {}, "request": { @@ -671,14 +671,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80040" + "url": "https://api.test.datacite.org/prefixes/10.80010" }, "response": { - "bodySize": 448, + "bodySize": 449, "content": { "mimeType": "application/json; charset=utf-8", - "size": 448, - "text": "{\"data\":{\"id\":\"10.80040\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80040\",\"createdAt\":\"2019-07-03T13:59:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"sml\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"b8150784-0b22-4ff0-b337-e58dc047b9ea\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"683f5012-9129-40ea-bf05-a7056acd8b01\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 449, + "text": "{\"data\":{\"id\":\"10.80010\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80010\",\"createdAt\":\"2019-07-03T13:59:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.tdar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"sml\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"dca90b10-7f7d-46aa-abe9-0a12263409ac\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cf83db86-c278-422e-a5f7-6f1e30f6f5be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -697,8 +697,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 339, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 419, "timings": { "blocked": -1, "connect": -1, @@ -706,11 +706,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 339 + "wait": 419 } }, { - "_id": "e321ea5048e7c9cab98aaa5f4ff0ff9b", + "_id": "e2f651abaf49af07fb5377ab3c619c8a", "_order": 0, "cache": {}, "request": { @@ -730,14 +730,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80067" + "url": "https://api.test.datacite.org/prefixes/10.70126" }, "response": { - "bodySize": 461, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80067\",\"createdAt\":\"2019-07-03T13:59:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70126\",\"createdAt\":\"2019-03-29T16:32:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -756,8 +756,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 353, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 426, "timings": { "blocked": -1, "connect": -1, @@ -765,11 +765,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 353 + "wait": 426 } }, { - "_id": "0a1608e22e7e666cd4f81d5266ceb42c", + "_id": "b81932fcd1cb9b2dc0532bf1574faa4a", "_order": 0, "cache": {}, "request": { @@ -785,18 +785,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 716, + "headersSize": 717, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.7968" + "url": "https://api.test.datacite.org/prefixes/10.21357" }, "response": { - "bodySize": 459, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.7968\",\"createdAt\":\"2019-06-28T10:46:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.21357\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21357\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"2f8424a4-1ebf-400d-9ce4-f13853cf30c7\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9ca76b52-c41e-49dc-989d-46796220f54e\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -815,8 +815,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 444, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 458, "timings": { "blocked": -1, "connect": -1, @@ -824,11 +824,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 444 + "wait": 458 } }, { - "_id": "3c64dc3c27fd04d4aa1dc60b55d8647f", + "_id": "400f683e45bb78d709379708af2bcae9", "_order": 0, "cache": {}, "request": { @@ -848,14 +848,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.33576" + "url": "https://api.test.datacite.org/prefixes/10.33575" }, "response": { - "bodySize": 460, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 460, - "text": "{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33576\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33575\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -874,8 +874,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 455, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 508, "timings": { "blocked": -1, "connect": -1, @@ -883,11 +883,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 455 + "wait": 508 } }, { - "_id": "400f683e45bb78d709379708af2bcae9", + "_id": "54b84ed9bb14bef1bd8a472f9c4c54c6", "_order": 0, "cache": {}, "request": { @@ -907,14 +907,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.33575" + "url": "https://api.test.datacite.org/prefixes/10.21358" }, "response": { "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", "size": 461, - "text": "{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33575\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\"}]}}}}" + "text": "{\"data\":{\"id\":\"10.21358\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21358\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"4be50e40-6961-453a-9a81-6d630aa0f040\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"159ae612-f518-410e-9a7d-d04e57f98ab8\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -933,8 +933,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 458, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 526, "timings": { "blocked": -1, "connect": -1, @@ -942,11 +942,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 458 + "wait": 526 } }, { - "_id": "e2f651abaf49af07fb5377ab3c619c8a", + "_id": "cbcae87f6ba4b4212231853a789a1f8a", "_order": 0, "cache": {}, "request": { @@ -966,14 +966,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70126" + "url": "https://api.test.datacite.org/prefixes/10.70102" }, "response": { - "bodySize": 459, + "bodySize": 450, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70126\",\"createdAt\":\"2019-03-29T16:32:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 450, + "text": "{\"data\":{\"id\":\"10.70102\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70102\",\"createdAt\":\"2019-03-29T16:32:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"21e73c47-0576-489e-92c1-3703f4932cac\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a7a15bb8-b9bb-46c3-93ab-57f9963946a7\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -992,8 +992,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 470, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 529, "timings": { "blocked": -1, "connect": -1, @@ -1001,11 +1001,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 470 + "wait": 529 } }, { - "_id": "54b84ed9bb14bef1bd8a472f9c4c54c6", + "_id": "fffe006654782e0fbde608e2a7870783", "_order": 0, "cache": {}, "request": { @@ -1025,14 +1025,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21358" + "url": "https://api.test.datacite.org/prefixes/10.21355" }, "response": { - "bodySize": 461, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.21358\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21358\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"4be50e40-6961-453a-9a81-6d630aa0f040\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"159ae612-f518-410e-9a7d-d04e57f98ab8\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.21355\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21355\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.tib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ff27a3fb-4d5f-43f1-b948-1c3f4988f38b\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1118ec3a-ef78-4f62-9635-cb094646ef2e\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1051,8 +1051,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 549, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 545, "timings": { "blocked": -1, "connect": -1, @@ -1060,11 +1060,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 549 + "wait": 545 } }, { - "_id": "cbcae87f6ba4b4212231853a789a1f8a", + "_id": "c6e633b73d0c929edb6e73be8c6f7e47", "_order": 0, "cache": {}, "request": { @@ -1084,14 +1084,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70102" + "url": "https://api.test.datacite.org/prefixes/10.21354" }, "response": { - "bodySize": 450, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 450, - "text": "{\"data\":{\"id\":\"10.70102\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70102\",\"createdAt\":\"2019-03-29T16:32:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"21e73c47-0576-489e-92c1-3703f4932cac\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a7a15bb8-b9bb-46c3-93ab-57f9963946a7\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.21354\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21354\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.slsi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e8c61733-ae2f-496e-9a68-3ae212099c3d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d569ecab-cba9-4019-b0bf-1d04aa6e3aea\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1110,8 +1110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 555, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 616, "timings": { "blocked": -1, "connect": -1, @@ -1119,11 +1119,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 555 + "wait": 616 } }, { - "_id": "e16fc6d3c00b4f4b1ba95e505204cd02", + "_id": "0c4e819d6db388b2c20a901f2aee078f", "_order": 0, "cache": {}, "request": { @@ -1143,14 +1143,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21356" + "url": "https://api.test.datacite.org/prefixes/10.21351" }, "response": { - "bodySize": 460, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 460, - "text": "{\"data\":{\"id\":\"10.21356\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21356\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.zbmed\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"8e4bcf10-accc-4de8-92b7-303c23859f54\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"e1a4a14a-32e6-4842-9610-0c3b99ea719e\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.21351\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21351\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.ici\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"fdd5de94-1767-44da-938b-68b750077eb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c363e1f8-d890-448e-a5ce-55369071c5c1\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1169,8 +1169,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 560, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 623, "timings": { "blocked": -1, "connect": -1, @@ -1178,11 +1178,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 560 + "wait": 623 } }, { - "_id": "fffe006654782e0fbde608e2a7870783", + "_id": "e16fc6d3c00b4f4b1ba95e505204cd02", "_order": 0, "cache": {}, "request": { @@ -1202,14 +1202,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21355" + "url": "https://api.test.datacite.org/prefixes/10.21356" }, "response": { - "bodySize": 458, + "bodySize": 460, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.21355\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21355\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.tib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ff27a3fb-4d5f-43f1-b948-1c3f4988f38b\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1118ec3a-ef78-4f62-9635-cb094646ef2e\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 460, + "text": "{\"data\":{\"id\":\"10.21356\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21356\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.zbmed\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"8e4bcf10-accc-4de8-92b7-303c23859f54\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"e1a4a14a-32e6-4842-9610-0c3b99ea719e\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1228,8 +1228,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 566, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 629, "timings": { "blocked": -1, "connect": -1, @@ -1237,11 +1237,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 566 + "wait": 629 } }, { - "_id": "b81932fcd1cb9b2dc0532bf1574faa4a", + "_id": "51a45b606522cb9abe6536c2e4e99992", "_order": 0, "cache": {}, "request": { @@ -1261,14 +1261,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21357" + "url": "https://api.test.datacite.org/prefixes/10.21352" }, "response": { - "bodySize": 458, + "bodySize": 462, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.21357\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21357\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"2f8424a4-1ebf-400d-9ce4-f13853cf30c7\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9ca76b52-c41e-49dc-989d-46796220f54e\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 462, + "text": "{\"data\":{\"id\":\"10.21352\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21352\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bcc992ef-508e-4e1a-a79d-4966cb3e3e39\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"697a7007-595f-43d4-8ddf-8f9725046152\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1287,7 +1287,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", + "startedDateTime": "2020-05-04T16:41:05.489Z", "time": 638, "timings": { "blocked": -1, @@ -1300,7 +1300,7 @@ } }, { - "_id": "c6e633b73d0c929edb6e73be8c6f7e47", + "_id": "09fef2c20fd4181786f3d1747ee20e4f", "_order": 0, "cache": {}, "request": { @@ -1320,14 +1320,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21354" + "url": "https://api.test.datacite.org/prefixes/10.21349" }, "response": { - "bodySize": 459, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.21354\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21354\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.slsi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e8c61733-ae2f-496e-9a68-3ae212099c3d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d569ecab-cba9-4019-b0bf-1d04aa6e3aea\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.21349\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21349\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.hab\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d42a9851-0340-4fac-8884-7d4fbce09256\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"27ebc572-3e0e-40d6-80f0-6e634ff957b7\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1346,8 +1346,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 647, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 641, "timings": { "blocked": -1, "connect": -1, @@ -1355,11 +1355,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 647 + "wait": 641 } }, { - "_id": "0c4e819d6db388b2c20a901f2aee078f", + "_id": "81b6cde63e490fcdcaa73973c066ff9d", "_order": 0, "cache": {}, "request": { @@ -1379,14 +1379,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21351" + "url": "https://api.test.datacite.org/prefixes/10.21345" }, "response": { - "bodySize": 458, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.21351\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21351\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.ici\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"fdd5de94-1767-44da-938b-68b750077eb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c363e1f8-d890-448e-a5ce-55369071c5c1\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.21345\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21345\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.gwdg\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9952f894-9478-4a04-99d6-acfa255bf1ee\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"2a049142-4ca7-4cd2-a2f0-9ee13d37792e\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1405,8 +1405,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 666, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 724, "timings": { "blocked": -1, "connect": -1, @@ -1414,11 +1414,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 666 + "wait": 724 } }, { - "_id": "51a45b606522cb9abe6536c2e4e99992", + "_id": "e7c8945862ff40df3d0fe3ad16f1f0aa", "_order": 0, "cache": {}, "request": { @@ -1438,14 +1438,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21352" + "url": "https://api.test.datacite.org/prefixes/10.21344" }, "response": { - "bodySize": 462, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 462, - "text": "{\"data\":{\"id\":\"10.21352\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21352\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bcc992ef-508e-4e1a-a79d-4966cb3e3e39\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"697a7007-595f-43d4-8ddf-8f9725046152\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.21344\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21344\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.dlr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d41f261e-2daa-45c6-89b8-87f86961d971\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c8e86bc7-6698-4df6-97c5-b45704084f5a\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1464,8 +1464,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 677, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 726, "timings": { "blocked": -1, "connect": -1, @@ -1473,11 +1473,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 677 + "wait": 726 } }, { - "_id": "90f26261cf3ef445da11f92aa4da236b", + "_id": "f6b67e8820950f5cca5fd6c8434dc9cc", "_order": 0, "cache": {}, "request": { @@ -1493,18 +1493,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 717, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.bri" + "url": "https://api.test.datacite.org/prefixes/10.24424" }, "response": { - "bodySize": 706, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 706, - "text": "{\"data\":{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.24424\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24424\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.era2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"363b66b0-573d-4ec1-8241-958abceeb1e2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"7781aaca-f316-476a-940e-d4c8dd680fb1\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1523,8 +1523,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 751, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 739, "timings": { "blocked": -1, "connect": -1, @@ -1532,11 +1532,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 751 + "wait": 739 } }, { - "_id": "09fef2c20fd4181786f3d1747ee20e4f", + "_id": "c02b4e3f44d385db4bbf7d565d6aea9e", "_order": 0, "cache": {}, "request": { @@ -1556,14 +1556,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21349" + "url": "https://api.test.datacite.org/prefixes/10.21342" }, "response": { - "bodySize": 458, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.21349\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21349\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.hab\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d42a9851-0340-4fac-8884-7d4fbce09256\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"27ebc572-3e0e-40d6-80f0-6e634ff957b7\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.21342\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21342\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5ef41c27-cbbe-49c0-8ed2-b8b926a3256e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ff871c82-526e-4b73-a86b-8f36b326beac\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1582,8 +1582,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 753, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 752, "timings": { "blocked": -1, "connect": -1, @@ -1591,11 +1591,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 753 + "wait": 752 } }, { - "_id": "ea3de19069b6f6cf2d533a5ac048aacd", + "_id": "5aa6d2a809b274313218bc627d8321c8", "_order": 0, "cache": {}, "request": { @@ -1611,18 +1611,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 720, + "headersSize": 717, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/sml.cip" + "url": "https://api.test.datacite.org/prefixes/10.24429" }, "response": { - "bodySize": 706, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 706, - "text": "{\"data\":{\"id\":\"sml.cip\",\"type\":\"repositories\",\"attributes\":{\"name\":\"International Potato Center\",\"symbol\":\"SML.CIP\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"H.JUAREZ@CGIAR.ORG\",\"globusUuid\":null,\"alternateName\":\"International Potato Center\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-09-16T13:32:46.000Z\",\"updated\":\"2019-09-16T18:42:54.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80040\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.24429\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24429\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.era3\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5fd48eab-85d9-47c9-81c7-c6fb5542ee78\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"22380aa2-6e74-4af4-95bf-031c9fa1caab\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1641,8 +1641,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 772, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 812, "timings": { "blocked": -1, "connect": -1, @@ -1650,11 +1650,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 772 + "wait": 812 } }, { - "_id": "17f3b4700a8e7ca7886a360bf5cefd89", + "_id": "90f26261cf3ef445da11f92aa4da236b", "_order": 0, "cache": {}, "request": { @@ -1670,18 +1670,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 717, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21343" + "url": "https://api.test.datacite.org/repositories/datacite.bri" }, "response": { - "bodySize": 458, + "bodySize": 706, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.21343\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21343\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.bsb\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9dd9d06f-314d-4396-9836-93c12ea1551d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"97d7fee0-5eb2-43d1-9b27-d40d5cad212b\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 706, + "text": "{\"data\":{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1700,8 +1700,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 777, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 826, "timings": { "blocked": -1, "connect": -1, @@ -1709,11 +1709,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 777 + "wait": 826 } }, { - "_id": "e7c8945862ff40df3d0fe3ad16f1f0aa", + "_id": "77b265592e9c515fef89646f76ba207b", "_order": 0, "cache": {}, "request": { @@ -1729,18 +1729,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 717, + "headersSize": 726, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21344" + "url": "https://api.test.datacite.org/repositories/datacite.mary" }, "response": { - "bodySize": 458, + "bodySize": 690, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.21344\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21344\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.dlr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d41f261e-2daa-45c6-89b8-87f86961d971\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c8e86bc7-6698-4df6-97c5-b45704084f5a\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 690, + "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-04-29T09:51:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":87,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1759,8 +1759,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 856, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 844, "timings": { "blocked": -1, "connect": -1, @@ -1768,11 +1768,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 856 + "wait": 844 } }, { - "_id": "72718c5b8ad824c83ff697865575f066", + "_id": "c43438dca0b1ee1788b44f66314b9962", "_order": 0, "cache": {}, "request": { @@ -1788,18 +1788,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 721, + "headersSize": 728, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/sml.tdar" + "url": "https://api.test.datacite.org/repositories/datacite.atmire" }, "response": { - "bodySize": 679, + "bodySize": 723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 679, - "text": "{\"data\":{\"id\":\"sml.tdar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Digital Antiquity (TDAR)\",\"symbol\":\"SML.TDAR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jim.devos@asu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-08-05T12:03:01.000Z\",\"updated\":\"2019-08-06T19:04:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80010\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 723, + "text": "{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":14,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -1818,8 +1818,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 873, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1012, "timings": { "blocked": -1, "connect": -1, @@ -1827,11 +1827,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 873 + "wait": 1012 } }, { - "_id": "e2831a55060530a68b1087aa3e2cd861", + "_id": "b1c302df64e5010d03ddd91eb30fa082", "_order": 0, "cache": {}, "request": { @@ -1847,18 +1847,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 727, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.test" + "url": "https://api.test.datacite.org/repositories/datacite.cifor" }, "response": { - "bodySize": 742, + "bodySize": 736, "content": { "mimeType": "application/json; charset=utf-8", - "size": 742, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "size": 736, + "text": "{\"data\":{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"salesforceId\":null,\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1877,8 +1877,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 877, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1017, "timings": { "blocked": -1, "connect": -1, @@ -1886,11 +1886,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 877 + "wait": 1017 } }, { - "_id": "5aa6d2a809b274313218bc627d8321c8", + "_id": "dc7f6220f024e559957cfd8582b75a0f", "_order": 0, "cache": {}, "request": { @@ -1906,18 +1906,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 717, + "headersSize": 728, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24429" + "url": "https://api.test.datacite.org/repositories/datacite.becker" }, "response": { - "bodySize": 459, + "bodySize": 711, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.24429\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24429\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.era3\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5fd48eab-85d9-47c9-81c7-c6fb5542ee78\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"22380aa2-6e74-4af4-95bf-031c9fa1caab\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 711, + "text": "{\"data\":{\"id\":\"datacite.becker\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Pascal Becker's test account\",\"symbol\":\"DATACITE.BECKER\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"pascal@the-library-code.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-01T11:09:54.000Z\",\"updated\":\"2019-11-01T11:10:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7968\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":10,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1936,8 +1936,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 880, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1021, "timings": { "blocked": -1, "connect": -1, @@ -1945,11 +1945,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 880 + "wait": 1021 } }, { - "_id": "81b6cde63e490fcdcaa73973c066ff9d", + "_id": "72718c5b8ad824c83ff697865575f066", "_order": 0, "cache": {}, "request": { @@ -1965,18 +1965,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 717, + "headersSize": 721, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21345" + "url": "https://api.test.datacite.org/repositories/sml.tdar" }, "response": { - "bodySize": 459, + "bodySize": 679, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.21345\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21345\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.gwdg\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9952f894-9478-4a04-99d6-acfa255bf1ee\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"2a049142-4ca7-4cd2-a2f0-9ee13d37792e\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 679, + "text": "{\"data\":{\"id\":\"sml.tdar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Digital Antiquity (TDAR)\",\"symbol\":\"SML.TDAR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jim.devos@asu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-08-05T12:03:01.000Z\",\"updated\":\"2019-08-06T19:04:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80010\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1995,8 +1995,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 883, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1043, "timings": { "blocked": -1, "connect": -1, @@ -2004,11 +2004,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 883 + "wait": 1043 } }, { - "_id": "f6b67e8820950f5cca5fd6c8434dc9cc", + "_id": "ea3de19069b6f6cf2d533a5ac048aacd", "_order": 0, "cache": {}, "request": { @@ -2024,18 +2024,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 717, + "headersSize": 720, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24424" + "url": "https://api.test.datacite.org/repositories/sml.cip" }, "response": { - "bodySize": 459, + "bodySize": 706, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.24424\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24424\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.era2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"363b66b0-573d-4ec1-8241-958abceeb1e2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"7781aaca-f316-476a-940e-d4c8dd680fb1\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 706, + "text": "{\"data\":{\"id\":\"sml.cip\",\"type\":\"repositories\",\"attributes\":{\"name\":\"International Potato Center\",\"symbol\":\"SML.CIP\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"H.JUAREZ@CGIAR.ORG\",\"globusUuid\":null,\"alternateName\":\"International Potato Center\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-09-16T13:32:46.000Z\",\"updated\":\"2019-09-16T18:42:54.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80040\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2054,8 +2054,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 991, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1059, "timings": { "blocked": -1, "connect": -1, @@ -2063,11 +2063,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 991 + "wait": 1059 } }, { - "_id": "c02b4e3f44d385db4bbf7d565d6aea9e", + "_id": "f8b69123aa4ccf13997a6ac7cfeb05cc", "_order": 0, "cache": {}, "request": { @@ -2083,18 +2083,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 717, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.21342" + "url": "https://api.test.datacite.org/repositories/workshop.dlr" }, "response": { - "bodySize": 461, + "bodySize": 711, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.21342\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21342\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"5ef41c27-cbbe-49c0-8ed2-b8b926a3256e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ff871c82-526e-4b73-a86b-8f36b326beac\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 711, + "text": "{\"data\":{\"id\":\"workshop.dlr\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DLR IW-LTG Köln\",\"symbol\":\"WORKSHOP.DLR\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Christian.Langenbach@dlr.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"elib.dlr.de\",\"salesforceId\":null,\"created\":\"2018-12-10T10:18:04.000Z\",\"updated\":\"2018-12-10T12:16:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21344\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2113,8 +2113,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1067, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1179, "timings": { "blocked": -1, "connect": -1, @@ -2122,11 +2122,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1067 + "wait": 1179 } }, { - "_id": "b1c302df64e5010d03ddd91eb30fa082", + "_id": "5ec33ce89d8df2fda2ab8bc9b5aa5215", "_order": 0, "cache": {}, "request": { @@ -2142,18 +2142,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 727, + "headersSize": 728, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.cifor" + "url": "https://api.test.datacite.org/repositories/datacite.drexel" }, "response": { - "bodySize": 736, + "bodySize": 702, "content": { "mimeType": "application/json; charset=utf-8", - "size": 736, - "text": "{\"data\":{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"salesforceId\":null,\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 702, + "text": "{\"data\":{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2172,8 +2172,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1187, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1183, "timings": { "blocked": -1, "connect": -1, @@ -2181,11 +2181,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1187 + "wait": 1183 } }, { - "_id": "5ec33ce89d8df2fda2ab8bc9b5aa5215", + "_id": "6e05bbdbd2662585fd99f08cffa7ace7", "_order": 0, "cache": {}, "request": { @@ -2201,18 +2201,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 728, + "headersSize": 726, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.drexel" + "url": "https://api.test.datacite.org/repositories/workshop.era3" }, "response": { - "bodySize": 702, + "bodySize": 712, "content": { "mimeType": "application/json; charset=utf-8", - "size": 702, - "text": "{\"data\":{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 712, + "text": "{\"data\":{\"id\":\"workshop.era3\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Göttingen eResearch Alliance 3\",\"symbol\":\"WORKSHOP.ERA3\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"lena.steilen@gwdg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:38:31.000Z\",\"updated\":\"2018-12-10T12:10:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24429\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2231,8 +2231,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1191, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1226, "timings": { "blocked": -1, "connect": -1, @@ -2240,11 +2240,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1191 + "wait": 1226 } }, { - "_id": "a00aa9843dbcd66a089a175351f6760c", + "_id": "833e1baca36a6ee9c0af7b982f1c369a", "_order": 0, "cache": {}, "request": { @@ -2260,18 +2260,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 728, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.fenner" + "url": "https://api.test.datacite.org/repositories/workshop.sub" }, "response": { - "bodySize": 736, + "bodySize": 706, "content": { "mimeType": "application/json; charset=utf-8", - "size": 736, - "text": "{\"data\":{\"id\":\"workshop.fenner\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Training Fenner\",\"symbol\":\"WORKSHOP.FENNER\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T07:48:35.000Z\",\"updated\":\"2018-12-10T23:21:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":5,\"prefixCount\":2}}" + "size": 706, + "text": "{\"data\":{\"id\":\"workshop.sub\",\"type\":\"repositories\",\"attributes\":{\"name\":\"SUB Göttingen\",\"symbol\":\"WORKSHOP.SUB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"najko.jahn@sub.uni-goettingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T13:27:25.000Z\",\"updated\":\"2018-12-10T13:27:25.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21357\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2290,8 +2290,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1193, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1258, "timings": { "blocked": -1, "connect": -1, @@ -2299,11 +2299,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1193 + "wait": 1258 } }, { - "_id": "833e1baca36a6ee9c0af7b982f1c369a", + "_id": "7f21a9faa0d3ca970942f2c1b6f341be", "_order": 0, "cache": {}, "request": { @@ -2319,18 +2319,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 721, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.sub" + "url": "https://api.test.datacite.org/repositories/demo.cos" }, "response": { - "bodySize": 706, + "bodySize": 682, "content": { "mimeType": "application/json; charset=utf-8", - "size": 706, - "text": "{\"data\":{\"id\":\"workshop.sub\",\"type\":\"repositories\",\"attributes\":{\"name\":\"SUB Göttingen\",\"symbol\":\"WORKSHOP.SUB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"najko.jahn@sub.uni-goettingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T13:27:25.000Z\",\"updated\":\"2018-12-10T13:27:25.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21357\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 682, + "text": "{\"data\":{\"id\":\"demo.cos\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for Open Science\",\"symbol\":\"DEMO.COS\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"sara@cos.io\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-04-04T16:42:53.000Z\",\"updated\":\"2018-08-26T01:31:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70102\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":38,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2349,8 +2349,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1207, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1317, "timings": { "blocked": -1, "connect": -1, @@ -2358,11 +2358,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1207 + "wait": 1317 } }, { - "_id": "87656e7e596f946a9d38cfce64d6600c", + "_id": "60e7d7bf90e46ff5a7314bf4e22e3402", "_order": 0, "cache": {}, "request": { @@ -2378,18 +2378,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.slsi" + "url": "https://api.test.datacite.org/repositories/workshop.tib" }, "response": { - "bodySize": 726, + "bodySize": 714, "content": { "mimeType": "application/json; charset=utf-8", - "size": 726, - "text": "{\"data\":{\"id\":\"workshop.slsi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Salomon-Ludwig Steinheim Institut Essen\",\"symbol\":\"WORKSHOP.SLSI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"lor@steinheim-institut.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:23:01.000Z\",\"updated\":\"2018-12-10T11:02:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21354\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" + "size": 714, + "text": "{\"data\":{\"id\":\"workshop.tib\",\"type\":\"repositories\",\"attributes\":{\"name\":\"TIB Hannover\",\"symbol\":\"WORKSHOP.TIB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Stephanie.Hagemann@tib.eu\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"Workshop Testaccount\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:34:32.000Z\",\"updated\":\"2018-12-10T12:03:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21355\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2408,8 +2408,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1238, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1354, "timings": { "blocked": -1, "connect": -1, @@ -2417,11 +2417,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1238 + "wait": 1354 } }, { - "_id": "cc8efaef6c0259828dfcd5c756aa14bb", + "_id": "9bfe2b2139bdadf4ee76b262d1914adf", "_order": 0, "cache": {}, "request": { @@ -2437,18 +2437,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 727, + "headersSize": 726, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.zbmed" + "url": "https://api.test.datacite.org/repositories/workshop.era2" }, "response": { - "bodySize": 690, + "bodySize": 719, "content": { "mimeType": "application/json; charset=utf-8", - "size": 690, - "text": "{\"data\":{\"id\":\"workshop.zbmed\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ZBMed Köln\",\"symbol\":\"WORKSHOP.ZBMED\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Zeitlin@zbmed.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:35:13.000Z\",\"updated\":\"2018-12-10T10:43:00.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21356\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" + "size": 719, + "text": "{\"data\":{\"id\":\"workshop.era2\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Göttingen eResearch Alliance 2\",\"symbol\":\"WORKSHOP.ERA2\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leone@sub.uni-goettingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:12:20.000Z\",\"updated\":\"2018-12-10T10:15:35.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24424\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2467,8 +2467,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1255, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1362, "timings": { "blocked": -1, "connect": -1, @@ -2476,7 +2476,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1255 + "wait": 1362 } }, { @@ -2526,8 +2526,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1495, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1423, "timings": { "blocked": -1, "connect": -1, @@ -2535,11 +2535,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1495 + "wait": 1423 } }, { - "_id": "f8b69123aa4ccf13997a6ac7cfeb05cc", + "_id": "87861d70335d079b853ff10a2a105dd3", "_order": 0, "cache": {}, "request": { @@ -2555,18 +2555,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 729, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.dlr" + "url": "https://api.test.datacite.org/repositories/workshop.khk-dui" }, "response": { - "bodySize": 711, + "bodySize": 731, "content": { "mimeType": "application/json; charset=utf-8", - "size": 711, - "text": "{\"data\":{\"id\":\"workshop.dlr\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DLR IW-LTG Köln\",\"symbol\":\"WORKSHOP.DLR\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Christian.Langenbach@dlr.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"elib.dlr.de\",\"salesforceId\":null,\"created\":\"2018-12-10T10:18:04.000Z\",\"updated\":\"2018-12-10T12:16:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21344\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2,\"prefixCount\":1}}" + "size": 731, + "text": "{\"data\":{\"id\":\"workshop.khk-dui\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Käte-Hamburger Kolleg / Uni Duisburg-Essen\",\"symbol\":\"WORKSHOP.KHK-DUI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"wolf@gcr21.uni-due.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T09:42:34.000Z\",\"updated\":\"2018-12-10T12:07:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2585,8 +2585,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1501, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1443, "timings": { "blocked": -1, "connect": -1, @@ -2594,7 +2594,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1501 + "wait": 1443 } }, { @@ -2644,8 +2644,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1508, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1519, "timings": { "blocked": -1, "connect": -1, @@ -2653,11 +2653,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1508 + "wait": 1519 } }, { - "_id": "9bfe2b2139bdadf4ee76b262d1914adf", + "_id": "b42d781f53dfe8c68bf13dc5c1102709", "_order": 0, "cache": {}, "request": { @@ -2673,18 +2673,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.era2" + "url": "https://api.test.datacite.org/repositories/workshop.bsb" }, "response": { - "bodySize": 719, + "bodySize": 693, "content": { "mimeType": "application/json; charset=utf-8", - "size": 719, - "text": "{\"data\":{\"id\":\"workshop.era2\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Göttingen eResearch Alliance 2\",\"symbol\":\"WORKSHOP.ERA2\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leone@sub.uni-goettingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:12:20.000Z\",\"updated\":\"2018-12-10T10:15:35.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24424\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 693, + "text": "{\"data\":{\"id\":\"workshop.bsb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"BSB München\",\"symbol\":\"WORKSHOP.BSB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"zep-ps@bsb-muenchen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T09:34:02.000Z\",\"updated\":\"2018-12-10T12:03:45.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21343\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2703,8 +2703,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1548, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1638, "timings": { "blocked": -1, "connect": -1, @@ -2712,11 +2712,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1548 + "wait": 1638 } }, { - "_id": "87861d70335d079b853ff10a2a105dd3", + "_id": "a00aa9843dbcd66a089a175351f6760c", "_order": 0, "cache": {}, "request": { @@ -2732,18 +2732,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 729, + "headersSize": 728, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.khk-dui" + "url": "https://api.test.datacite.org/repositories/workshop.fenner" }, "response": { - "bodySize": 731, + "bodySize": 736, "content": { "mimeType": "application/json; charset=utf-8", - "size": 731, - "text": "{\"data\":{\"id\":\"workshop.khk-dui\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Käte-Hamburger Kolleg / Uni Duisburg-Essen\",\"symbol\":\"WORKSHOP.KHK-DUI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"wolf@gcr21.uni-due.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T09:42:34.000Z\",\"updated\":\"2018-12-10T12:07:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" + "size": 736, + "text": "{\"data\":{\"id\":\"workshop.fenner\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Training Fenner\",\"symbol\":\"WORKSHOP.FENNER\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T07:48:35.000Z\",\"updated\":\"2018-12-10T23:21:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":5,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -2762,8 +2762,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1552, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1641, "timings": { "blocked": -1, "connect": -1, @@ -2771,11 +2771,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1552 + "wait": 1641 } }, { - "_id": "b42d781f53dfe8c68bf13dc5c1102709", + "_id": "2cf0ab219007c9284641c79e202007f4", "_order": 0, "cache": {}, "request": { @@ -2795,14 +2795,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.bsb" + "url": "https://api.test.datacite.org/repositories/workshop.hab" }, "response": { - "bodySize": 693, + "bodySize": 718, "content": { "mimeType": "application/json; charset=utf-8", - "size": 693, - "text": "{\"data\":{\"id\":\"workshop.bsb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"BSB München\",\"symbol\":\"WORKSHOP.BSB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"zep-ps@bsb-muenchen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T09:34:02.000Z\",\"updated\":\"2018-12-10T12:03:45.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21343\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" + "size": 718, + "text": "{\"data\":{\"id\":\"workshop.hab\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Herzog August Bibliothek Wolfenbüttel\",\"symbol\":\"WORKSHOP.HAB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"henrike.fricke@hab.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:09:45.000Z\",\"updated\":\"2018-12-10T12:03:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21349\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2821,8 +2821,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1573, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1662, "timings": { "blocked": -1, "connect": -1, @@ -2830,11 +2830,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1573 + "wait": 1662 } }, { - "_id": "2cf0ab219007c9284641c79e202007f4", + "_id": "87656e7e596f946a9d38cfce64d6600c", "_order": 0, "cache": {}, "request": { @@ -2850,18 +2850,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 726, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.hab" + "url": "https://api.test.datacite.org/repositories/workshop.slsi" }, "response": { - "bodySize": 718, + "bodySize": 726, "content": { "mimeType": "application/json; charset=utf-8", - "size": 718, - "text": "{\"data\":{\"id\":\"workshop.hab\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Herzog August Bibliothek Wolfenbüttel\",\"symbol\":\"WORKSHOP.HAB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"henrike.fricke@hab.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:09:45.000Z\",\"updated\":\"2018-12-10T12:03:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21349\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2,\"prefixCount\":1}}" + "size": 726, + "text": "{\"data\":{\"id\":\"workshop.slsi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Salomon-Ludwig Steinheim Institut Essen\",\"symbol\":\"WORKSHOP.SLSI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"lor@steinheim-institut.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:23:01.000Z\",\"updated\":\"2018-12-10T11:02:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21354\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2880,8 +2880,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1650, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1709, "timings": { "blocked": -1, "connect": -1, @@ -2889,11 +2889,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1650 + "wait": 1709 } }, { - "_id": "60e7d7bf90e46ff5a7314bf4e22e3402", + "_id": "cc8efaef6c0259828dfcd5c756aa14bb", "_order": 0, "cache": {}, "request": { @@ -2909,18 +2909,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 727, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.tib" + "url": "https://api.test.datacite.org/repositories/workshop.zbmed" }, "response": { - "bodySize": 714, + "bodySize": 690, "content": { "mimeType": "application/json; charset=utf-8", - "size": 714, - "text": "{\"data\":{\"id\":\"workshop.tib\",\"type\":\"repositories\",\"attributes\":{\"name\":\"TIB Hannover\",\"symbol\":\"WORKSHOP.TIB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Stephanie.Hagemann@tib.eu\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"Workshop Testaccount\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:34:32.000Z\",\"updated\":\"2018-12-10T12:03:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21355\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" + "size": 690, + "text": "{\"data\":{\"id\":\"workshop.zbmed\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ZBMed Köln\",\"symbol\":\"WORKSHOP.ZBMED\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Zeitlin@zbmed.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:35:13.000Z\",\"updated\":\"2018-12-10T10:43:00.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21356\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2939,8 +2939,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1661, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 1722, "timings": { "blocked": -1, "connect": -1, @@ -2948,11 +2948,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1661 + "wait": 1722 } }, { - "_id": "6e05bbdbd2662585fd99f08cffa7ace7", + "_id": "17f3b4700a8e7ca7886a360bf5cefd89", "_order": 0, "cache": {}, "request": { @@ -2968,18 +2968,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 717, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/workshop.era3" + "url": "https://api.test.datacite.org/prefixes/10.21343" }, "response": { - "bodySize": 712, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 712, - "text": "{\"data\":{\"id\":\"workshop.era3\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Göttingen eResearch Alliance 3\",\"symbol\":\"WORKSHOP.ERA3\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"lena.steilen@gwdg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-12-10T10:38:31.000Z\",\"updated\":\"2018-12-10T12:10:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24429\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.21343\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.21343\",\"createdAt\":\"2016-04-06T07:19:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.bsb\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"workshop\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9dd9d06f-314d-4396-9836-93c12ea1551d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"97d7fee0-5eb2-43d1-9b27-d40d5cad212b\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -2998,8 +2998,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:41.376Z", - "time": 1670, + "startedDateTime": "2020-05-04T16:41:05.489Z", + "time": 2048, "timings": { "blocked": -1, "connect": -1, @@ -3007,7 +3007,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1670 + "wait": 2048 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-repositories_1174203230/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-repositories_1174203230/recording.har index 814f182a1..6e2e096f7 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-repositories_1174203230/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC-repositories_1174203230/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/visiting provider DC repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:33.268Z", - "time": 221, + "startedDateTime": "2020-05-04T16:40:59.205Z", + "time": 220, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 221 + "wait": 220 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=dc&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 18698, + "bodySize": 18512, "content": { "mimeType": "application/json; charset=utf-8", - "size": 18698, - "text": "{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atlas of Innovations\",\"symbol\":\"MGXI.WWCHPA\",\"re3data\":\"https://doi.org/10.17616/R31NJML2\",\"opendoar\":null,\"year\":2020,\"systemEmail\":\"info@datacite.org\",\"alternateName\":\"BAOI\",\"description\":\"The Digital Atlas of Innovations presents the oldest evidence for innovations over a long time period. This collection presents the data/information at the basis of the atlas in stable and citable manner.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\",\"as\"],\"certificate\":[\"CoreTrustSeal\",\"DINI\"],\"domains\":\"*\",\"issn\":{},\"url\":\"http://repository.edition-topoi.org/collection/BAOI\",\"created\":\"2020-02-28T09:13:28.000Z\",\"updated\":\"2020-02-28T09:26:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mgxi\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"workshop.bsb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"BSB München\",\"symbol\":\"WORKSHOP.BSB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"zep-ps@bsb-muenchen.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-12-10T09:34:02.000Z\",\"updated\":\"2018-12-10T12:03:45.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21343\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"demo.cos\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for Open Science\",\"symbol\":\"DEMO.COS\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"sara@cos.io\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-04-04T16:42:53.000Z\",\"updated\":\"2018-08-26T01:31:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70102\",\"type\":\"prefixes\"}]}}},{\"id\":\"demo.cul\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Columbia University Libraries\",\"symbol\":\"DEMO.CUL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"fcd1@columbia.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-10-22T15:11:12.000Z\",\"updated\":\"2018-10-22T16:19:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33520\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"sml.cyverse\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CyVerse\",\"symbol\":\"SML.CYVERSE\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"core-sw@cyverse.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-11-13T18:18:05.000Z\",\"updated\":\"2018-11-13T22:27:48.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"rphco.rwhdvh\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Portal German Marine Research\",\"symbol\":\"RPHCO.RWHDVH\",\"re3data\":\"https://doi.org/10.17616/R3F92P\",\"opendoar\":null,\"year\":2020,\"systemEmail\":\"info@datacite.org\",\"alternateName\":null,\"description\":\"The Data Portal German Marine Research is a product of the Marine Network for Integrated Data Access (MaNIDA) funded cooperatively by the Helmholtz Association and the affiliated universities. The consortium aims to implement a sustainable e-infrastructure for coherent discovery, view, download and dissemination of marine research data.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[\"af\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-02-27T21:27:38.000Z\",\"updated\":\"2020-02-27T21:28:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"rphco\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"demo.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Staff Demo Client\",\"symbol\":\"DEMO.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-04-08T09:31:38.000Z\",\"updated\":\"2019-07-16T16:30:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70043\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"sml.tdar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Digital Antiquity (TDAR)\",\"symbol\":\"SML.TDAR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jim.devos@asu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-08-05T12:03:01.000Z\",\"updated\":\"2019-08-06T19:04:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80010\",\"type\":\"prefixes\"}]}}},{\"id\":\"workshop.dlr\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DLR IW-LTG Köln\",\"symbol\":\"WORKSHOP.DLR\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Christian.Langenbach@dlr.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"elib.dlr.de\",\"created\":\"2018-12-10T10:18:04.000Z\",\"updated\":\"2018-12-10T12:16:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21344\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":104,\"totalPages\":5,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":5},{\"id\":\"2019\",\"title\":\"2019\",\"count\":9},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":21},{\"id\":\"workshop\",\"title\":\"DataCite Training Workshop\",\"count\":14},{\"id\":\"sml\",\"title\":\"DataCite Provider\",\"count\":4},{\"id\":\"bibtag\",\"title\":\"DataCite Workshop Bibliothekartag\",\"count\":1},{\"id\":\"cnsrtrg\",\"title\":\"Consortium Organization\",\"count\":1},{\"id\":\"mgxi\",\"title\":\"ETH Zurich\",\"count\":1},{\"id\":\"rphco\",\"title\":\"RPH Test Consortium Org\",\"count\":1}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":103},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":2},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":3},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":1},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=dc&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" + "size": 18512, + "text": "{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atlas of Innovations\",\"symbol\":\"MGXI.WWCHPA\",\"re3data\":\"https://doi.org/10.17616/R31NJML2\",\"opendoar\":null,\"year\":2020,\"systemEmail\":\"info@datacite.org\",\"alternateName\":\"BAOI\",\"description\":\"The Digital Atlas of Innovations presents the oldest evidence for innovations over a long time period. This collection presents the data/information at the basis of the atlas in stable and citable manner.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\",\"as\"],\"certificate\":[\"CoreTrustSeal\",\"DINI\"],\"domains\":\"*\",\"issn\":{},\"url\":\"http://repository.edition-topoi.org/collection/BAOI\",\"created\":\"2020-02-28T09:13:28.000Z\",\"updated\":\"2020-02-28T09:26:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mgxi\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"workshop.bsb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"BSB München\",\"symbol\":\"WORKSHOP.BSB\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"zep-ps@bsb-muenchen.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-12-10T09:34:02.000Z\",\"updated\":\"2018-12-10T12:03:45.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21343\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"demo.cos\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for Open Science\",\"symbol\":\"DEMO.COS\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"sara@cos.io\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-04-04T16:42:53.000Z\",\"updated\":\"2018-08-26T01:31:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70102\",\"type\":\"prefixes\"}]}}},{\"id\":\"demo.cul\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Columbia University Libraries\",\"symbol\":\"DEMO.CUL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"fcd1@columbia.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-10-22T15:11:12.000Z\",\"updated\":\"2018-10-22T16:19:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33520\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"sml.cyverse\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CyVerse\",\"symbol\":\"SML.CYVERSE\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"core-sw@cyverse.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-11-13T18:18:05.000Z\",\"updated\":\"2018-11-13T22:27:48.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"rphco.rwhdvh\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Portal German Marine Research\",\"symbol\":\"RPHCO.RWHDVH\",\"re3data\":\"https://doi.org/10.17616/R3F92P\",\"opendoar\":null,\"year\":2020,\"systemEmail\":\"info@datacite.org\",\"alternateName\":null,\"description\":\"The Data Portal German Marine Research is a product of the Marine Network for Integrated Data Access (MaNIDA) funded cooperatively by the Helmholtz Association and the affiliated universities. The consortium aims to implement a sustainable e-infrastructure for coherent discovery, view, download and dissemination of marine research data.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[\"af\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-02-27T21:27:38.000Z\",\"updated\":\"2020-02-27T21:28:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"rphco\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"demo.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Staff Demo Client\",\"symbol\":\"DEMO.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-04-08T09:31:38.000Z\",\"updated\":\"2019-07-16T16:30:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"demo\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70043\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"sml.tdar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Digital Antiquity (TDAR)\",\"symbol\":\"SML.TDAR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jim.devos@asu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-08-05T12:03:01.000Z\",\"updated\":\"2019-08-06T19:04:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"sml\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80010\",\"type\":\"prefixes\"}]}}},{\"id\":\"workshop.dlr\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DLR IW-LTG Köln\",\"symbol\":\"WORKSHOP.DLR\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"Christian.Langenbach@dlr.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"elib.dlr.de\",\"created\":\"2018-12-10T10:18:04.000Z\",\"updated\":\"2018-12-10T12:16:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"workshop\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21344\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":104,\"totalPages\":5,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":5},{\"id\":\"2019\",\"title\":\"2019\",\"count\":9},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62},{\"id\":\"demo\",\"title\":null,\"count\":21},{\"id\":\"workshop\",\"title\":null,\"count\":14},{\"id\":\"sml\",\"title\":null,\"count\":4},{\"id\":\"bibtag\",\"title\":null,\"count\":1},{\"id\":\"mgxi\",\"title\":null,\"count\":1},{\"id\":\"rphco\",\"title\":null,\"count\":1}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":103},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":2},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":3},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":1},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=dc&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:33.506Z", - "time": 175, + "startedDateTime": "2020-05-04T16:40:59.454Z", + "time": 188, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 175 + "wait": 188 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC_1121896450/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC_1121896450/recording.har index ab2da71e1..3eddb04d0 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC_1121896450/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DC_1121896450/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/visiting provider DC", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:30.092Z", - "time": 218, + "startedDateTime": "2020-05-04T16:40:56.887Z", + "time": 197, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 218 + "wait": 197 } } ], diff --git a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DataCite-repositories_601366784/recording.har b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DataCite-repositories_601366784/recording.har index 2e8f43deb..e697ed00d 100644 --- a/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DataCite-repositories_601366784/recording.har +++ b/recordings/Acceptance-consortium_admin-provider_1723822552/visiting-provider-DataCite-repositories_601366784/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | provider/visiting provider DataCite repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7106, + "bodySize": 7179, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7106, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7179, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:34.256Z", - "time": 130, + "startedDateTime": "2020-05-04T16:41:00.259Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 130 + "wait": 111 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:34.397Z", - "time": 180, + "startedDateTime": "2020-05-04T16:41:00.393Z", + "time": 157, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 180 + "wait": 157 } } ], diff --git a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-dois_3205762602/recording.har b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-dois_3205762602/recording.har index ae2f084d7..6f0774400 100644 --- a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-dois_3205762602/recording.har +++ b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-dois_3205762602/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | repository/visiting repository DataCite Test dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.970Z", - "time": 102, + "startedDateTime": "2020-05-04T16:41:09.482Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 98 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1762, + "bodySize": 1795, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1762, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1795, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:45.087Z", - "time": 95, + "startedDateTime": "2020-05-04T16:41:09.591Z", + "time": 84, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 84 } }, { @@ -238,11 +238,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 34562, + "bodySize": 35712, "content": { "mimeType": "application/json; charset=utf-8", - "size": 34562, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T04:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fqse-wb15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fqse-wb15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/fqse-wb15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Trento, Giovanna\",\"nameType\":\"Personal\",\"givenName\":\"Giovanna\",\"familyName\":\"Trento\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Pier Paolo Pasolini and Pan-Meridional Italianness\"}],\"publisher\":\"Turia + Kant\",\"container\":{\"type\":\"Series\",\"title\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities\",\"volume\":\"Geographies\",\"lastPage\":\"83\",\"firstPage\":\"59\",\"identifier\":\"https://doi.org/10.25620/ci-06\",\"identifierType\":\"DOI\"},\"publicationYear\":2012,\"subjects\":[{\"subject\":\"Pasolini, Pier Paolo\"},{\"subject\":\"Italy, Southern\"},{\"subject\":\"panafricanism\"},{\"subject\":\"colonialism\"}],\"contributors\":[{\"name\":\"Di Blasi, Luca\",\"nameType\":\"Personal\",\"givenName\":\"Luca\",\"familyName\":\"Di Blasi\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6755-6570\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Gragnolati, Manuele\",\"nameType\":\"Personal\",\"givenName\":\"Manuele\",\"familyName\":\"Gragnolati\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8178-3443\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Holzhey, Christoph F. E.\",\"nameType\":\"Personal\",\"givenName\":\"Christoph F. E.\",\"familyName\":\"Holzhey\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1312-1878\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"inbook\",\"citeproc\":\"chapter\",\"schemaOrg\":\"Chapter\",\"resourceType\":\"Book_chapter\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-06\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"https://www.ici-berlin.org/oa/ci-06/index.html\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-85132-681-9\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-728X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-731X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-print\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-online\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"© by the author(s)\"},{\"rights\":\"This version is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"description\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities, Geographies, 59-83\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T08:18:22.000Z\",\"registered\":null,\"published\":\"2012\",\"updated\":\"2020-04-18T08:18:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-15T12:39:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/6pkt-sx79\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/6pkt-sx79\",\"identifiers\":[{\"identifier\":\"dssda\",\"identifierType\":\"ARK\"}],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[{\"name\":\"dsfdfs, fd\",\"nameType\":\"Personal\",\"givenName\":\"fd\",\"familyName\":\"dsfdfs\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[{\"date\":\"2009\",\"dateType\":\"Withdrawn\",\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Documents\",\"relatedIdentifier\":\"dfds\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"ISTC\",\"relatedMetadataScheme\":null}],\"sizes\":[\"32\"],\"formats\":[\"23\"],\"version\":null,\"rightsList\":[{\"rights\":\"Amazon Digital Services License\",\"rightsUri\":\"http://spdx.org/licenses/ADSL.json\"}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":21,\"northBoundLatitude\":12,\"southBoundLatitude\":44,\"westBoundLongitude\":21},\"geoLocationPlace\":\"sdffsd\",\"geoLocationPoint\":{\"pointLatitude\":21,\"pointLongitude\":12}}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Università degli Studi di Cassino e del Lazio Meridionale\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/501100012699\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T11:07:21.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-07T11:08:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/ytzz-wq10\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/ytzz-wq10\",\"identifiers\":[],\"creators\":[{\"name\":\"Buys, Matthew\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"},{\"name\":\"ORCID\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04fa4r544\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Matthew Buys\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test title - new form\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sociology\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en\",\"description\":\"Test description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":null,\"northBoundLatitude\":null,\"southBoundLatitude\":null,\"westBoundLongitude\":null},\"geoLocationPlace\":\"Amsterdam\",\"geoLocationPoint\":{\"pointLatitude\":null,\"pointLongitude\":null}}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T07:20:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-07T07:20:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-06T16:42:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7m2v-5757\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7m2v-5757\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/7m2v-5757\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Center For International Earth Science Information Network-CIESIN-Columbia University\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Low Elevation Coastal Zone (LECZ) Urban-Rural Population and Land Area Estimates, Version 3\"},{\"title\":\"Urban-Rural Population and Land Area Estimates, Version 3 (1990, 2000, 2015)\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC)\",\"container\":{},\"publicationYear\":2013,\"subjects\":[{\"subject\":\"climate\"},{\"subject\":\"marine and coastal\"},{\"subject\":\"population\"},{\"subject\":\"sustainability\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"tabular; map; map service\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPreviousVersionOf\",\"relatedIdentifier\":\"10.7927/yyyyy3\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T12:48:27.000Z\",\"registered\":null,\"published\":\"2013\",\"updated\":\"2020-04-06T12:49:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-04-06T07:59:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/yh3e-rp55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/yh3e-rp55\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":null,\"nameIdentifiers\":[]}],\"dates\":[{\"date\":null,\"dateType\":null,\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":null,\"awardNumber\":null,\"funderIdentifier\":null,\"funderIdentifierType\":\"Other\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-04T06:46:13.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-04T06:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/n77d-nz44\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/n77d-nz44\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[\"444\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T09:31:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-30T09:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/kvth-tj94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/kvth-tj94\",\"identifiers\":[{\"identifier\":\"1288-90\",\"identifierType\":\"Pubmed\"}],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6628-8225\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is a new dataset\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Biochemistry\",\"valueUri\":\"jhggff\",\"schemeUri\":\"\",\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Dreyer, Britta\",\"nameType\":\"Personal\",\"givenName\":\"Britta\",\"familyName\":\"Dreyer\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"ar\",\"types\":{\"resourceType\":\"Satellite Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://tib.eu\",\"schemeType\":\"iosfudsfj\",\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.1029/PA004i004p00413\",\"resourceTypeGeneral\":\"Image\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":\"Dublin Core\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Cites\",\"relatedIdentifier\":\"asdadsads\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"EISSN\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"aesfdjäadspujgäapsjgear#jgdfaÖXMCv\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Barcelona\"},{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://tib.eu\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T16:18:09.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-03-27T10:23:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-25T05:46:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":16,\"totalPages\":1,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":10},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":16}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":16}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":11},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":5}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":2}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":14},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":2}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"1\",\"title\":\"1\",\"count\":2},{\"id\":\"0\",\"title\":\"0\",\"count\":1}],\"linkChecksSchemaOrgId\":2,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Computer and information sciences\",\"title\":\"Computer And Information Sciences\",\"count\":2},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":2},{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":1},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":1},{\"id\":\"Italy, Southern\",\"title\":\"Italy, Southern\",\"count\":1},{\"id\":\"Pasolini, Pier Paolo\",\"title\":\"Pasolini, Pier Paolo\",\"count\":1},{\"id\":\"Sociology\",\"title\":\"Sociology\",\"count\":1},{\"id\":\"climate\",\"title\":\"Climate\",\"count\":1},{\"id\":\"colonialism\",\"title\":\"Colonialism\",\"count\":1},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":1},{\"id\":\"instrument\",\"title\":\"Instrument\",\"count\":1},{\"id\":\"marine and coastal\",\"title\":\"Marine And Coastal\",\"count\":1},{\"id\":\"panafricanism\",\"title\":\"Panafricanism\",\"count\":1},{\"id\":\"population\",\"title\":\"Population\",\"count\":1},{\"id\":\"rda\",\"title\":\"Rda\",\"count\":1}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\"}}" + "size": 35712, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-04T10:02:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T09:02:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T06:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-05-04T03:32:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/pxjp-zj03\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/pxjp-zj03\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T19:30:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T19:30:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":46,\"totalPages\":2,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":40},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":6},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":46}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":5},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":46}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":46}],\"affiliations\":[{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":39},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":7}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":10}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":6}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.test&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -261,8 +261,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:45.087Z", - "time": 285, + "startedDateTime": "2020-05-04T16:41:09.592Z", + "time": 212, "timings": { "blocked": -1, "connect": -1, @@ -270,7 +270,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 285 + "wait": 212 } } ], diff --git a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-info_3093299103/recording.har b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-info_3093299103/recording.har index 5dc7a7ad3..ab12a959d 100644 --- a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-info_3093299103/recording.har +++ b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-info_3093299103/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | repository/visiting repository DataCite Test info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:43.728Z", - "time": 117, + "startedDateTime": "2020-05-04T16:41:08.180Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 126 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1762, + "bodySize": 1795, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1762, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1795, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:43.962Z", - "time": 183, + "startedDateTime": "2020-05-04T16:41:08.450Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 183 + "wait": 131 } }, { @@ -163,11 +163,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:43.962Z", - "time": 190, + "startedDateTime": "2020-05-04T16:41:08.450Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 190 + "wait": 150 } }, { @@ -226,7 +226,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 321, - "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":16}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" + "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":46}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":6},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:43.963Z", - "time": 162, + "startedDateTime": "2020-05-04T16:41:08.451Z", + "time": 167, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 162 + "wait": 167 } } ], diff --git a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har index a4a623ab1..d60767f91 100644 --- a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har +++ b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | repository/visiting repository DataCite Test prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,7 +63,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.351Z", + "startedDateTime": "2020-05-04T16:41:08.763Z", "time": 106, "timings": { "blocked": -1, @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1762, + "bodySize": 1795, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1762, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1795, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.473Z", - "time": 84, + "startedDateTime": "2020-05-04T16:41:08.895Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 93 } }, { @@ -190,11 +190,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=" }, "response": { - "bodySize": 1473, + "bodySize": 1360, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1473, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" + "size": 1360, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" }, "cookies": [], "headers": [ @@ -213,8 +213,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.473Z", - "time": 146, + "startedDateTime": "2020-05-04T16:41:08.895Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -222,7 +222,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 146 + "wait": 109 } }, { @@ -253,7 +253,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 742, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -272,8 +272,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.473Z", - "time": 148, + "startedDateTime": "2020-05-04T16:41:08.895Z", + "time": 253, "timings": { "blocked": -1, "connect": -1, @@ -281,7 +281,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 148 + "wait": 253 } }, { @@ -331,8 +331,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.739Z", - "time": 93, + "startedDateTime": "2020-05-04T16:41:09.119Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -340,7 +340,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 116 } }, { @@ -390,8 +390,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:44.739Z", - "time": 100, + "startedDateTime": "2020-05-04T16:41:09.119Z", + "time": 127, "timings": { "blocked": -1, "connect": -1, @@ -399,7 +399,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 127 } } ], diff --git a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test_2005196089/recording.har b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test_2005196089/recording.har index 220353453..7c35356f9 100644 --- a/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test_2005196089/recording.har +++ b/recordings/Acceptance-consortium_admin-repository_1373773937/visiting-repository-DataCite-Test_2005196089/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | repository/visiting repository DataCite Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:43.298Z", - "time": 103, + "startedDateTime": "2020-05-04T16:41:07.675Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 100 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1762, + "bodySize": 1795, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1762, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1795, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:43.511Z", - "time": 98, + "startedDateTime": "2020-05-04T16:41:07.961Z", + "time": 122, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 122 } } ], diff --git a/recordings/Acceptance-consortium_admin-user_49554558/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-consortium_admin-user_49554558/visiting-specific-user_253064087/recording.har index 0d415c4aa..cf224fb50 100644 --- a/recordings/Acceptance-consortium_admin-user_49554558/visiting-specific-user_253064087/recording.har +++ b/recordings/Acceptance-consortium_admin-user_49554558/visiting-specific-user_253064087/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | user/visiting specific user", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -39,7 +39,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1290, - "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" + "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" }, "cookies": [], "headers": [ @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:47.376Z", - "time": 98, + "startedDateTime": "2020-05-04T16:41:11.435Z", + "time": 107, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 107 } }, { @@ -103,11 +103,11 @@ "url": "https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405" }, "response": { - "bodySize": 67237, + "bodySize": 66321, "content": { "mimeType": "application/json; charset=utf-8", - "size": 67237, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00359\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00359\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00359\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Ffff\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"ssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Dddd\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939140000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-29T10:41:17.000Z\",\"registered\":\"2019-04-29T10:41:18.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T01:31:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00365\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00365\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00365\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T06:21:10.000Z\",\"registered\":\"2020-04-01T06:21:11.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T06:32:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00362\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00362\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00362\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite44\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":9,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-07T08:11:09.000Z\",\"registered\":\"2019-05-07T08:11:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T04:31:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"pending teeeeeeeee\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Preprint\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-20T12:43:30.000Z\",\"registered\":\"2019-02-20T12:43:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T02:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0065\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0065\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0065\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dfd\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-10/\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T10:29:53.000Z\",\"registered\":\"2019-01-24T10:29:53.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T05:32:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.004\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.004\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.004\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dbg is down!!!!!!!!!!!!!!!!\"},{\"title\":\"Zikoukim\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"Musical Score\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Karamela\"},{\"subject\":\"Music Composition\"},{\"subject\":\"Music Education\"},{\"subject\":\"Musicology\"}],\"contributors\":[{\"name\":\"Dori, Danit Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Danit Sweet\",\"familyName\":\"Dori\",\"affiliation\":[\"Main Campus, Harvard University (Cambridge)\"],\"contributorType\":\"DataCurator\"},{\"name\":\"Jerusalem College Of Technology (Jerusalem)\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-02-14/2020\",\"dateType\":\"Collected\"},{\"date\":\"2020/2024\",\"dateType\":\"Created\"},{\"date\":\"2019-02-14\",\"dateType\":\"Updated\"},{\"date\":\"2019-05/2020\",\"dateType\":\"Valid\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"he\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.1007/s10841-006-9063-4\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"jpg\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Peretz was born and raised in Tiberias. His father was of Moroccan Jewish origin and his mother was of Iraqi Jewish origin. Peretz started singing as a poet in a synagogue in Tiberias at the age of 13 and began to compose songs. At the age of 18 Peretz was inducted into the Israel Defense Forces for obligatory military service. During his service, he performed \\\"שיר המעלות‬\\\", during Yom Hazikaron (the Israeli Memorial Day) ceremonies held at his base that received positive feedback leading to him serving in a military music band. In 2002, he started writing songs while in the Army. After release from the Army, he released his first album in 2005 entitled Mabit El Hamromim (מביט אל המרומים‬) that saw sale of over 10,000 copies in Israel\",\"descriptionType\":\"Methods\"},{\"description\":\"2017: Bucher Chadash (בחור חדש) (meaning New Guy)\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"Moshe Peretz (Hebrew: משה פרץ‬; born 10 May 1983) is an Israeli \\\"Mizrahi\\\" pop singer-songwriter and composer. He is also currently serving as a judge for the first season of The X Factor Israel.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Tiberias, Israel\"},{\"geoLocationPoint\":{\"pointLatitude\":\"10.0\",\"pointLongitude\":\"95.0\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"55.0\",\"northBoundLatitude\":\"9.0\",\"southBoundLatitude\":\"21.0\",\"westBoundLongitude\":\"95.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Go Music\",\"funderName\":\"Hadassah Medical Center (Jerusalem)\",\"awardNumber\":\"Music\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-07T06:52:08.000Z\",\"registered\":\"2019-02-07T06:52:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00370\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00370\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00370\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"sasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-06-28\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9942040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-04T05:25:24.000Z\",\"registered\":\"2019-06-04T05:25:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T02:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0057\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0057\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0057\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"sasasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933041400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-23T12:59:24.000Z\",\"registered\":\"2019-01-23T12:59:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-21T01:01:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-18T02:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123h\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123h\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Vanity Fair\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://beahan.name/domenic.treutel\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":335,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-31T21:41:43.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-18T01:01:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00356\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00356\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00356\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"tytytyty hjhjh\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018-08-24\",\"dateType\":\"Accepted\"},{\"date\":\"2017-04-01\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"},{\"rights\":\"aaaaaab jm jjjjjjjjjjjj opppppppppp\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9938841000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T10:54:22.000Z\",\"registered\":\"2019-04-18T10:54:23.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-17T22:00:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3030-53-3821\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3030-53-3821\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Precious Bane\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://schillermohr.com/theda_marks\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T21:25:18.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T21:32:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00368\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00368\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00368\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test4545455\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9940741400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-22T11:12:13.000Z\",\"registered\":\"2019-05-22T11:12:13.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-17T20:31:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"},{\"nameIdentifier\":\"WWW\",\"nameIdentifierScheme\":\"Wikidata\"}]}],\"titles\":[{\"title\":\"my doi test sand cont\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Adam, Omer\",\"nameType\":\"Personal\",\"givenName\":\"Omer\",\"familyName\":\"Adam\",\"contributorType\":\"Other\",\"nameIdentifiers\":[{\"nameIdentifier\":\"llll\",\"nameIdentifierScheme\":\"Library of Congress Name Authority File Number\"},{\"nameIdentifier\":\"VVV\",\"nameIdentifierScheme\":\"VIAF\"},{\"nameIdentifier\":\"pppp\",\"nameIdentifierScheme\":\"Pubmed author ID\"},{\"nameIdentifier\":\"ww\",\"nameIdentifierScheme\":\"Wikidata\"},{\"nameIdentifier\":\"pp\",\"nameIdentifierScheme\":\"Pivot ID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2016-05-04\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T20:57:27.000Z\",\"registered\":\"2019-04-18T20:57:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:31:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:01:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T01:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-16T22:03:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":95,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":83},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":35},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":67},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":42},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":60},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":70},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":70},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":4}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":70},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":5}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":70},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":12},{\"id\":\"test\",\"title\":\"Test\",\"count\":12},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":70},{\"id\":\"1\",\"title\":\"1\",\"count\":5}],\"linkChecksSchemaOrgId\":5,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":12},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":12},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":12},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":12},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":12},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":12},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":12},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":5},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":4},{\"id\":\"Karamela\",\"title\":\"Karamela\",\"count\":3},{\"id\":\"Music Composition\",\"title\":\"Music Composition\",\"count\":3},{\"id\":\"Music Education\",\"title\":\"Music Education\",\"count\":3},{\"id\":\"Musicology\",\"title\":\"Musicology\",\"count\":3},{\"id\":\"Architecture\",\"title\":\"Architecture\",\"count\":1},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":1}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" + "size": 66321, + "text": "{\"data\":[{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T05:31:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0034\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0034\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0034\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"test datacite sssssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[\"4568.5 kb\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-SA V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc-sa/4.0\"}],\"descriptions\":[{\"description\":\"my abstract description!\",\"descriptionType\":\"Abstract\"},{\"description\":\"cool methods\",\"descriptionType\":\"Methods\"},{\"description\":\"cool methods secont one\",\"descriptionType\":\"Methods\"},{\"description\":\"cool techinal info\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"additional or other???\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-15T09:11:24.000Z\",\"registered\":\"2020-04-06T08:46:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-03T09:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"gggg, aaaa\",\"nameType\":\"Personal\",\"givenName\":\"aaaa\",\"familyName\":\"gggg\",\"affiliation\":[]},{\"name\":\"My Group Author\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test group author\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"My Group 2\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-14T03:45:44.000Z\",\"registered\":\"2019-08-14T03:45:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0066\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0066\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0066\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"בהבסה\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08/0002-12\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"png\",\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T11:57:38.000Z\",\"registered\":\"2019-01-24T11:57:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T05:31:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cool_conf.0037\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cool_conf.0037\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cool_conf.0037\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearcherID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"ERA\"}]}],\"titles\":[{\"title\":\"Test url\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Conference abstract\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-16T16:41:22.000Z\",\"registered\":\"2019-01-16T16:53:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T04:31:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00357\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00357\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00357\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Lea Sweet\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Alzheimer's research & therapy\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-13T09:00:16.000Z\",\"registered\":\"2020-02-13T09:00:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-02T10:02:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0090\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0090\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0090\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"wqwqwqw\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Model\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-17T09:37:45.000Z\",\"registered\":\"2019-02-17T09:37:47.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T13:01:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/from_sand_datacite.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/from_sand_datacite.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/from_sand_datacite.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Bayandina, O. S\",\"nameType\":\"Personal\",\"givenName\":\"O. S\",\"familyName\":\"Bayandina\",\"affiliation\":[]},{\"name\":\"Alakoz, A. V\",\"nameType\":\"Personal\",\"givenName\":\"A. V\",\"familyName\":\"Alakoz\",\"affiliation\":[]},{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Val’tts, I. E\",\"nameType\":\"Personal\",\"givenName\":\"I. E\",\"familyName\":\"Val’tts\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Magnetic fields in methanol maser condensations based on data for related regions. Seven sources: Observational parameters\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-17T05:45:01.000Z\",\"registered\":\"2020-02-17T05:45:02.000Z\",\"published\":\"2013\",\"updated\":\"2020-05-01T12:02:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/10377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/10377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/10377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite subject\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-20T10:22:10.000Z\",\"registered\":\"2019-11-20T10:22:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T10:02:47.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0033\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0033\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0033\",\"identifierType\":\"DOI\"},{\"identifier\":\"1111-2222\",\"identifierType\":\"ISSN\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"TEST for Job - data cite - was existing333333333333\"}],\"publisher\":\"fsgs\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-14T10:33:23.000Z\",\"registered\":\"2019-02-13T11:54:32.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-30T10:31:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/06377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/06377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/06377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.5555/test.11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-19T12:32:09.000Z\",\"registered\":\"2019-11-19T12:32:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-29T09:00:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-29T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T13:34:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T13:34:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0064\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0064\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0064\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"geo\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"fgsfgsg\\nsgsgs\"},{\"geoLocationPlace\":\"gsgsg\\nsgsgsg\"}],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T08:39:07.000Z\",\"registered\":\"2019-01-24T08:39:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-28T09:01:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cw.00040\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cw.00040\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cw.00040\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Manevitz, Larry\",\"nameType\":\"Personal\",\"givenName\":\"Larry\",\"familyName\":\"Manevitz\",\"affiliation\":[]},{\"name\":\"Abbas, Emily Funny\",\"nameType\":\"Personal\",\"givenName\":\"Emily Funny\",\"familyName\":\"Abbas\",\"affiliation\":[\"University of Iowa Libraries, Nursing\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Dance1\"}],\"publisher\":\"University of Iowa Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"test type\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Closed\"},{\"rights\":\"Test copyright\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-23T16:16:43.000Z\",\"registered\":\"2019-05-23T16:16:44.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T05:32:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":96,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":84},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":36},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":68},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":43},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":71},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":71},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":3}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":71},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":38}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" }, "cookies": [], "headers": [ @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:47.376Z", - "time": 230, + "startedDateTime": "2020-05-04T16:41:11.435Z", + "time": 211, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 230 + "wait": 211 } } ], diff --git a/recordings/Acceptance-consortium_admin-user_49554558/visiting-users_37556140/recording.har b/recordings/Acceptance-consortium_admin-user_49554558/visiting-users_37556140/recording.har index cb7f53941..e1427d26e 100644 --- a/recordings/Acceptance-consortium_admin-user_49554558/visiting-users_37556140/recording.har +++ b/recordings/Acceptance-consortium_admin-user_49554558/visiting-users_37556140/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | consortium_admin | user/visiting users", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,7 +67,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 8217, - "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":66889,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" + "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":67002,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" }, "cookies": [], "headers": [ @@ -86,8 +86,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:46.160Z", - "time": 409, + "startedDateTime": "2020-05-04T16:41:10.708Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -95,7 +95,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 409 + "wait": 90 } }, { @@ -127,11 +127,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27179, + "bodySize": 28067, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27179, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28067, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -150,8 +150,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:46.583Z", - "time": 216, + "startedDateTime": "2020-05-04T16:41:10.816Z", + "time": 199, "timings": { "blocked": -1, "connect": -1, @@ -159,7 +159,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 216 + "wait": 199 } }, { @@ -234,11 +234,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 16252, + "bodySize": 15441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 16252, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 15441, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05a28rw58\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -257,8 +257,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:46.813Z", - "time": 101, + "startedDateTime": "2020-05-04T16:41:11.035Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -266,7 +266,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 92 } } ], diff --git a/recordings/Acceptance-organization_admin-admin_444107770/is-logged-in_3542225560/recording.har b/recordings/Acceptance-organization_admin-admin_444107770/is-logged-in_3542225560/recording.har index 46816293b..028052a3a 100644 --- a/recordings/Acceptance-organization_admin-admin_444107770/is-logged-in_3542225560/recording.har +++ b/recordings/Acceptance-organization_admin-admin_444107770/is-logged-in_3542225560/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | admin/is logged in", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:47.919Z", - "time": 89, + "startedDateTime": "2020-05-04T16:41:11.949Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 95 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:48.019Z", - "time": 140, + "startedDateTime": "2020-05-04T16:41:12.055Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 139 } } ], diff --git a/recordings/Acceptance-organization_admin-admin_444107770/visiting-homepage_882376104/recording.har b/recordings/Acceptance-organization_admin-admin_444107770/visiting-homepage_882376104/recording.har index f16f80f12..4096c158d 100644 --- a/recordings/Acceptance-organization_admin-admin_444107770/visiting-homepage_882376104/recording.har +++ b/recordings/Acceptance-organization_admin-admin_444107770/visiting-homepage_882376104/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | admin/visiting homepage", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:48.800Z", - "time": 383, + "startedDateTime": "2020-05-04T16:41:12.912Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 383 + "wait": 139 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:49.206Z", - "time": 163, + "startedDateTime": "2020-05-04T16:41:13.082Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 126 } } ], diff --git a/recordings/Acceptance-organization_admin-admin_444107770/visiting-info_3527359880/recording.har b/recordings/Acceptance-organization_admin-admin_444107770/visiting-info_3527359880/recording.har index af9e1cadc..037562ce2 100644 --- a/recordings/Acceptance-organization_admin-admin_444107770/visiting-info_3527359880/recording.har +++ b/recordings/Acceptance-organization_admin-admin_444107770/visiting-info_3527359880/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | admin/visiting info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:50.368Z", - "time": 126, + "startedDateTime": "2020-05-04T16:41:13.746Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 126 + "wait": 86 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:50.502Z", - "time": 145, + "startedDateTime": "2020-05-04T16:41:13.843Z", + "time": 156, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 145 + "wait": 156 } } ], diff --git a/recordings/Acceptance-organization_admin-admin_444107770/visiting-prefixes_435827572/recording.har b/recordings/Acceptance-organization_admin-admin_444107770/visiting-prefixes_435827572/recording.har index e7c7ef64b..230981caa 100644 --- a/recordings/Acceptance-organization_admin-admin_444107770/visiting-prefixes_435827572/recording.har +++ b/recordings/Acceptance-organization_admin-admin_444107770/visiting-prefixes_435827572/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | admin/visiting prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -75,11 +75,11 @@ "url": "https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 30811, + "bodySize": 28695, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30811, - "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1978},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":289},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":300},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":283},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":165},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":158},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":131},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":129},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":120},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":93},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":64},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":55},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":54},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":53},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":51},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":38}],\"clients\":[{\"id\":\"cdl.ual\",\"title\":\"University of Alberta Libraries\",\"count\":13},{\"id\":\"tib.kisti\",\"title\":\"Korea Institute of Science and Technology Information\",\"count\":9},{\"id\":\"bl.imperial\",\"title\":\"Imperial College London\",\"count\":6},{\"id\":\"cdl.ucsd\",\"title\":\"UCSD\",\"count\":5},{\"id\":\"inist.ifremer\",\"title\":\"Institut Français de Recherche pour l'Exploitation de la Mer\",\"count\":5},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":4},{\"id\":\"ands.centre-8\",\"title\":\"CSIRO\",\"count\":3},{\"id\":\"ands.centre14\",\"title\":\"Australian National Data Service\",\"count\":3},{\"id\":\"bibtag.test\",\"title\":\"Workshop Test Account\",\"count\":3},{\"id\":\"bl.lincoln\",\"title\":\"University of Lincoln\",\"count\":3},{\"id\":\"bl.old-api\",\"title\":\"BL's DOI service prototype\",\"count\":3},{\"id\":\"dk.dc\",\"title\":\"DTIC Test Datacenter\",\"count\":3},{\"id\":\"nrct.db1\",\"title\":\"NRCT Data Center\",\"count\":3},{\"id\":\"purdue.ezid\",\"title\":\"PURDUE EZID\",\"count\":3},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" + "size": 28695, + "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1988},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":288},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -98,8 +98,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:53.175Z", - "time": 275, + "startedDateTime": "2020-05-04T16:41:16.436Z", + "time": 179, "timings": { "blocked": -1, "connect": -1, @@ -107,7 +107,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 275 + "wait": 179 } }, { @@ -139,11 +139,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -162,8 +162,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:53.473Z", - "time": 139, + "startedDateTime": "2020-05-04T16:41:16.670Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -171,7 +171,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 111 } }, { @@ -246,11 +246,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -269,8 +269,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:53.473Z", - "time": 206, + "startedDateTime": "2020-05-04T16:41:16.670Z", + "time": 143, "timings": { "blocked": -1, "connect": -1, @@ -278,7 +278,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 206 + "wait": 143 } } ], diff --git a/recordings/Acceptance-organization_admin-admin_444107770/visiting-providers_1061836054/recording.har b/recordings/Acceptance-organization_admin-admin_444107770/visiting-providers_1061836054/recording.har index b6a6e4fa7..7a5063c22 100644 --- a/recordings/Acceptance-organization_admin-admin_444107770/visiting-providers_1061836054/recording.har +++ b/recordings/Acceptance-organization_admin-admin_444107770/visiting-providers_1061836054/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | admin/visiting providers", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -83,11 +83,11 @@ "url": "https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 38580, + "bodySize": 39345, "content": { "mimeType": "application/json; charset=utf-8", - "size": 38580, - "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-03-19T05:10:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}},{\"id\":\"brown\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brown University Library\",\"displayName\":\"Brown University Library\",\"symbol\":\"BROWN\",\"website\":\"https://library.brown.edu/\",\"systemEmail\":\"bdr@brown.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05gq02987\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-05-31T13:54:32.000Z\",\"updated\":\"2019-08-13T14:29:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70139\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":408,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":123},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":243},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":141},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":8},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":401},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 39345, + "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-05-04T03:08:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"ardcanu\",\"type\":\"providers\"},{\"id\":\"jbtest\",\"type\":\"providers\"},{\"id\":\"uc\",\"type\":\"providers\"},{\"id\":\"jbtestwo\",\"type\":\"providers\"},{\"id\":\"jbthree\",\"type\":\"providers\"},{\"id\":\"ardcliz\",\"type\":\"providers\"},{\"id\":\"jbfive\",\"type\":\"providers\"},{\"id\":\"lwone\",\"type\":\"providers\"},{\"id\":\"lwardct\",\"type\":\"providers\"},{\"id\":\"tardc\",\"type\":\"providers\"},{\"id\":\"tcdu\",\"type\":\"providers\"},{\"id\":\"tunsw\",\"type\":\"providers\"},{\"id\":\"tjcu\",\"type\":\"providers\"},{\"id\":\"tlatrobe\",\"type\":\"providers\"},{\"id\":\"taad\",\"type\":\"providers\"},{\"id\":\"tuwa\",\"type\":\"providers\"},{\"id\":\"tcsiro\",\"type\":\"providers\"},{\"id\":\"tmonash\",\"type\":\"providers\"},{\"id\":\"tala\",\"type\":\"providers\"},{\"id\":\"tanu\",\"type\":\"providers\"},{\"id\":\"tdpaw\",\"type\":\"providers\"},{\"id\":\"taic\",\"type\":\"providers\"},{\"id\":\"tansto\",\"type\":\"providers\"},{\"id\":\"tnti\",\"type\":\"providers\"}]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"lwardct\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons LWTEST\",\"displayName\":\"Australian Research Data Commons LWTEST\",\"symbol\":\"LWARDCT\",\"website\":null,\"systemEmail\":\"liz.woods@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-29T04:22:26.000Z\",\"updated\":\"2020-04-29T04:25:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":439,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":135},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":125},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":245},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":170},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":9},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":432},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -106,8 +106,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:51.189Z", - "time": 162, + "startedDateTime": "2020-05-04T16:41:14.586Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -115,7 +115,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 162 + "wait": 117 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:51.388Z", - "time": 119, + "startedDateTime": "2020-05-04T16:41:14.721Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 93 } }, { @@ -254,11 +254,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -277,8 +277,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:51.520Z", - "time": 150, + "startedDateTime": "2020-05-04T16:41:14.826Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -286,7 +286,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 150 + "wait": 146 } } ], diff --git a/recordings/Acceptance-organization_admin-admin_444107770/visiting-repositories_601244364/recording.har b/recordings/Acceptance-organization_admin-admin_444107770/visiting-repositories_601244364/recording.har index 246929e9e..7eb8006e0 100644 --- a/recordings/Acceptance-organization_admin-admin_444107770/visiting-repositories_601244364/recording.har +++ b/recordings/Acceptance-organization_admin-admin_444107770/visiting-repositories_601244364/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | admin/visiting repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -87,11 +87,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 132870, + "bodySize": 126599, "content": { "mimeType": "application/json; charset=utf-8", - "size": 132870, - "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":\"## I am a repository\\n\\n- one repo\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-03-12T10:05:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-03-24T09:39:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ethz.test\",\"type\":\"clients\"},{\"id\":\"ethz.e-coll\",\"type\":\"clients\"},{\"id\":\"ethz.seals\",\"type\":\"clients\"},{\"id\":\"ethz.dodis\",\"type\":\"clients\"},{\"id\":\"ethz.ar\",\"type\":\"clients\"},{\"id\":\"ethz.uzh-al\",\"type\":\"clients\"},{\"id\":\"ethz.corssa\",\"type\":\"clients\"},{\"id\":\"ethz.jroi\",\"type\":\"clients\"},{\"id\":\"ethz.unibas\",\"type\":\"clients\"},{\"id\":\"ethz.wgms\",\"type\":\"clients\"},{\"id\":\"ethz.ids-lu\",\"type\":\"clients\"},{\"id\":\"ethz.lives\",\"type\":\"clients\"},{\"id\":\"ethz.epfl\",\"type\":\"clients\"},{\"id\":\"ethz.da-rd\",\"type\":\"clients\"},{\"id\":\"ethz.e-manus\",\"type\":\"clients\"},{\"id\":\"ethz.ubasojs\",\"type\":\"clients\"},{\"id\":\"ethz.ma\",\"type\":\"clients\"},{\"id\":\"ethz.bopalt\",\"type\":\"clients\"},{\"id\":\"ethz.zora\",\"type\":\"clients\"},{\"id\":\"ethz.ecodices\",\"type\":\"clients\"},{\"id\":\"ethz.sed\",\"type\":\"clients\"},{\"id\":\"ethz.e-rara\",\"type\":\"clients\"},{\"id\":\"ethz.li\",\"type\":\"clients\"},{\"id\":\"ethz.dmm\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ad\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ba\",\"type\":\"clients\"},{\"id\":\"ethz.smif\",\"type\":\"clients\"},{\"id\":\"ethz.lo\",\"type\":\"clients\"},{\"id\":\"ethz.fsw\",\"type\":\"clients\"},{\"id\":\"ethz.itis\",\"type\":\"clients\"},{\"id\":\"ethz.infoclio\",\"type\":\"clients\"},{\"id\":\"ethz.boris\",\"type\":\"clients\"},{\"id\":\"ethz.bopitw\",\"type\":\"clients\"},{\"id\":\"ethz.wsl\",\"type\":\"clients\"},{\"id\":\"ethz.iumsppub\",\"type\":\"clients\"},{\"id\":\"ethz.iumspdat\",\"type\":\"clients\"},{\"id\":\"ethz.rfre\",\"type\":\"clients\"},{\"id\":\"ethz.phsg\",\"type\":\"clients\"},{\"id\":\"ethz.bopjemr\",\"type\":\"clients\"},{\"id\":\"ethz.permos\",\"type\":\"clients\"},{\"id\":\"ethz.epics3\",\"type\":\"clients\"},{\"id\":\"ethz.inblog\",\"type\":\"clients\"},{\"id\":\"ethz.hopepsy\",\"type\":\"clients\"},{\"id\":\"ethz.zhaw\",\"type\":\"clients\"},{\"id\":\"ethz.ms\",\"type\":\"clients\"},{\"id\":\"ethz.ubemo\",\"type\":\"clients\"},{\"id\":\"ethz.epics-bs\",\"type\":\"clients\"},{\"id\":\"ethz.hopesui\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ki\",\"type\":\"clients\"},{\"id\":\"ethz.epics-st\",\"type\":\"clients\"},{\"id\":\"ethz.soz\",\"type\":\"clients\"},{\"id\":\"ethz.wsllfi\",\"type\":\"clients\"},{\"id\":\"ethz.bopinfo\",\"type\":\"clients\"},{\"id\":\"ethz.dodisint\",\"type\":\"clients\"},{\"id\":\"ethz.hes\",\"type\":\"clients\"},{\"id\":\"ethz.marvel\",\"type\":\"clients\"},{\"id\":\"ethz.historiaiuris\",\"type\":\"clients\"},{\"id\":\"ethz.agroscope\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3929\",\"type\":\"prefixes\"},{\"id\":\"10.3930\",\"type\":\"prefixes\"},{\"id\":\"10.3931\",\"type\":\"prefixes\"},{\"id\":\"10.3932\",\"type\":\"prefixes\"},{\"id\":\"10.3933\",\"type\":\"prefixes\"},{\"id\":\"10.5075\",\"type\":\"prefixes\"},{\"id\":\"10.5076\",\"type\":\"prefixes\"},{\"id\":\"10.5078\",\"type\":\"prefixes\"},{\"id\":\"10.5079\",\"type\":\"prefixes\"},{\"id\":\"10.5166\",\"type\":\"prefixes\"},{\"id\":\"10.5167\",\"type\":\"prefixes\"},{\"id\":\"10.5169\",\"type\":\"prefixes\"},{\"id\":\"10.5170\",\"type\":\"prefixes\"},{\"id\":\"10.5448\",\"type\":\"prefixes\"},{\"id\":\"10.5449\",\"type\":\"prefixes\"},{\"id\":\"10.5450\",\"type\":\"prefixes\"},{\"id\":\"10.5451\",\"type\":\"prefixes\"},{\"id\":\"10.5452\",\"type\":\"prefixes\"},{\"id\":\"10.5168\",\"type\":\"prefixes\"},{\"id\":\"10.5903\",\"type\":\"prefixes\"},{\"id\":\"10.5904\",\"type\":\"prefixes\"},{\"id\":\"10.5905\",\"type\":\"prefixes\"},{\"id\":\"10.5906\",\"type\":\"prefixes\"},{\"id\":\"10.5907\",\"type\":\"prefixes\"},{\"id\":\"10.12682\",\"type\":\"prefixes\"},{\"id\":\"10.12683\",\"type\":\"prefixes\"},{\"id\":\"10.12684\",\"type\":\"prefixes\"},{\"id\":\"10.12685\",\"type\":\"prefixes\"},{\"id\":\"10.12686\",\"type\":\"prefixes\"},{\"id\":\"10.7890\",\"type\":\"prefixes\"},{\"id\":\"10.7891\",\"type\":\"prefixes\"},{\"id\":\"10.7894\",\"type\":\"prefixes\"},{\"id\":\"10.7892\",\"type\":\"prefixes\"},{\"id\":\"10.13097\",\"type\":\"prefixes\"},{\"id\":\"10.13096\",\"type\":\"prefixes\"},{\"id\":\"10.13100\",\"type\":\"prefixes\"},{\"id\":\"10.13099\",\"type\":\"prefixes\"},{\"id\":\"10.13098\",\"type\":\"prefixes\"},{\"id\":\"10.13093\",\"type\":\"prefixes\"},{\"id\":\"10.13092\",\"type\":\"prefixes\"},{\"id\":\"10.13095\",\"type\":\"prefixes\"},{\"id\":\"10.13094\",\"type\":\"prefixes\"},{\"id\":\"10.13091\",\"type\":\"prefixes\"},{\"id\":\"10.16909\",\"type\":\"prefixes\"},{\"id\":\"10.16908\",\"type\":\"prefixes\"},{\"id\":\"10.16907\",\"type\":\"prefixes\"},{\"id\":\"10.16906\",\"type\":\"prefixes\"},{\"id\":\"10.16905\",\"type\":\"prefixes\"},{\"id\":\"10.16904\",\"type\":\"prefixes\"},{\"id\":\"10.16903\",\"type\":\"prefixes\"},{\"id\":\"10.16902\",\"type\":\"prefixes\"},{\"id\":\"10.16911\",\"type\":\"prefixes\"},{\"id\":\"10.16910\",\"type\":\"prefixes\"},{\"id\":\"10.18749\",\"type\":\"prefixes\"},{\"id\":\"10.18748\",\"type\":\"prefixes\"},{\"id\":\"10.18747\",\"type\":\"prefixes\"},{\"id\":\"10.18752\",\"type\":\"prefixes\"},{\"id\":\"10.18753\",\"type\":\"prefixes\"},{\"id\":\"10.18750\",\"type\":\"prefixes\"},{\"id\":\"10.18751\",\"type\":\"prefixes\"},{\"id\":\"10.18756\",\"type\":\"prefixes\"},{\"id\":\"10.18754\",\"type\":\"prefixes\"},{\"id\":\"10.18755\",\"type\":\"prefixes\"},{\"id\":\"10.21258\",\"type\":\"prefixes\"},{\"id\":\"10.21257\",\"type\":\"prefixes\"},{\"id\":\"10.21256\",\"type\":\"prefixes\"},{\"id\":\"10.21255\",\"type\":\"prefixes\"},{\"id\":\"10.21259\",\"type\":\"prefixes\"},{\"id\":\"10.21260\",\"type\":\"prefixes\"},{\"id\":\"10.21261\",\"type\":\"prefixes\"},{\"id\":\"10.21263\",\"type\":\"prefixes\"},{\"id\":\"10.21262\",\"type\":\"prefixes\"},{\"id\":\"10.21264\",\"type\":\"prefixes\"},{\"id\":\"10.22019\",\"type\":\"prefixes\"},{\"id\":\"10.22018\",\"type\":\"prefixes\"},{\"id\":\"10.22013\",\"type\":\"prefixes\"},{\"id\":\"10.22012\",\"type\":\"prefixes\"},{\"id\":\"10.22015\",\"type\":\"prefixes\"},{\"id\":\"10.22014\",\"type\":\"prefixes\"},{\"id\":\"10.22016\",\"type\":\"prefixes\"},{\"id\":\"10.22009\",\"type\":\"prefixes\"},{\"id\":\"10.26039\",\"type\":\"prefixes\"},{\"id\":\"10.24435\",\"type\":\"prefixes\"},{\"id\":\"10.24434\",\"type\":\"prefixes\"},{\"id\":\"10.24437\",\"type\":\"prefixes\"},{\"id\":\"10.24439\",\"type\":\"prefixes\"},{\"id\":\"10.24442\",\"type\":\"prefixes\"},{\"id\":\"10.24445\",\"type\":\"prefixes\"},{\"id\":\"10.24452\",\"type\":\"prefixes\"},{\"id\":\"10.26032\",\"type\":\"prefixes\"},{\"id\":\"10.26035\",\"type\":\"prefixes\"},{\"id\":\"10.26037\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2098,\"totalPages\":84,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":183},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":232},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":147},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":119},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":115},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":93},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":59},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":59},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":55},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":53},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":47},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":46},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":43},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":41}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2040},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":68},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":23},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":16},{\"id\":\"other\",\"title\":\"Other\",\"count\":13},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":9},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":16},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":14},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1},{\"id\":\"islandora\",\"title\":\"Islandora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" + "size": 126599, + "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-04-24T04:50:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-04-28T12:27:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2120,\"totalPages\":85,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":205},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":null,\"count\":252},{\"id\":\"cdl\",\"title\":null,\"count\":232},{\"id\":\"bl\",\"title\":null,\"count\":147},{\"id\":\"inist\",\"title\":null,\"count\":120},{\"id\":\"ands\",\"title\":null,\"count\":115},{\"id\":\"gesis\",\"title\":null,\"count\":93},{\"id\":\"datacite\",\"title\":null,\"count\":62},{\"id\":\"ethz\",\"title\":null,\"count\":59},{\"id\":\"mtakik\",\"title\":null,\"count\":59},{\"id\":\"osti\",\"title\":null,\"count\":55}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2062},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":71},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":24},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":18},{\"id\":\"other\",\"title\":\"Other\",\"count\":14},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":10},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":17},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":17},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -110,8 +110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:52.269Z", - "time": 204, + "startedDateTime": "2020-05-04T16:41:15.494Z", + "time": 144, "timings": { "blocked": -1, "connect": -1, @@ -119,7 +119,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 204 + "wait": 144 } }, { @@ -151,11 +151,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -174,8 +174,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:52.535Z", - "time": 104, + "startedDateTime": "2020-05-04T16:41:15.669Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -183,7 +183,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 92 } }, { @@ -258,11 +258,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -281,8 +281,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:52.649Z", - "time": 138, + "startedDateTime": "2020-05-04T16:41:15.768Z", + "time": 151, "timings": { "blocked": -1, "connect": -1, @@ -290,7 +290,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 151 } } ], diff --git a/recordings/Acceptance-organization_admin-doi_2523147597/visiting-dois_3774702605/recording.har b/recordings/Acceptance-organization_admin-doi_2523147597/visiting-dois_3774702605/recording.har index 4dfc81f3f..819c42ac0 100644 --- a/recordings/Acceptance-organization_admin-doi_2523147597/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-organization_admin-doi_2523147597/visiting-dois_3774702605/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | doi/visiting dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -119,11 +119,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 83895, + "bodySize": 80864, "content": { "mimeType": "application/json; charset=utf-8", - "size": 83895, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813559\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:41.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:40.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842813\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842811\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813557\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:36.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:33.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813555\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:28.000Z\",\"registered\":\"2020-04-23T07:10:29.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:24.000Z\",\"registered\":\"2020-04-23T07:10:24.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842809\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842807\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:23.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:22.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813549\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:20.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842803\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813547\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813547\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813547\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"Mechanical Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/_/2813547\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":false,\"state\":\"registered\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:15.000Z\",\"registered\":\"2020-04-23T07:10:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.5258/soton/1560\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5258/soton/1560\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5258/soton/1560/\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Binney, Heather\",\"nameType\":\"Personal\",\"givenName\":\"Heather\",\"familyName\":\"Binney\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"en-us\",\"title\":\"Title changed Vegetation of Eurasia from the last glacial maximum to the present: the pollen data\"}],\"publisher\":\"University of Southampton\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"1900/2013\",\"dateType\":\"Collected\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-us\",\"description\":\"This dataset details the pollen data used in the production of the biome vegetation maps shown in the published paper. The results of the biomization results of the pollen data is included.Adding in more information as required by testing\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://eprints.soton.ac.uk/1559/test\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-12T16:59:12.000Z\",\"registered\":\"2019-02-12T16:59:13.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:02:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.soton\",\"type\":\"clients\"}}}},{\"id\":\"10.24378/exe.7\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24378/exe.7\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24378/exe.7\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Desair, Tom\",\"nameType\":\"Personal\",\"givenName\":\"Tom\",\"familyName\":\"Desair\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Atmire Test Submission\"}],\"publisher\":\"Test\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]},{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Other\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Test\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://oredev03.exeter.ac.uk/repository/handle/10871/30993\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-02-26T15:50:28.000Z\",\"registered\":\"2018-03-01T16:00:40.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.exeter\",\"type\":\"clients\"}}}},{\"id\":\"10.14288/1.0043659\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14288/1.0043659\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14288/1.0043659\",\"identifierType\":\"DOI\"}],\"creators\":[],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"error\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://api.datacite.org/dois/10.14288/1.0043659\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-18T13:48:46.000Z\",\"registered\":\"2018-12-18T13:48:55.000Z\",\"published\":\"\",\"updated\":\"2020-04-23T07:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cisti.ubc\",\"type\":\"clients\"}}}},{\"id\":\"10.80066/1nfy-1g91\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80066/1nfy-1g91\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80066/1nfy-1g91\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"CNRST\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Formation Test\"}],\"publisher\":\"IMIST\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceTypeGeneral\":\"DataPaper\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-29T11:41:51.000Z\",\"registered\":\"2019-11-29T12:17:34.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cnrst.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21338/2019.00001\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21338/2019.00001\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21338/2019.00001\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test dataset\"}],\"publisher\":\"NIRD Storage\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Natural sciences\"},{\"subject\":\"Earth science\"},{\"subject\":\"Environmental science\"}],\"contributors\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"contributorType\":\"Other\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2020-01-17\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Simulation, Raw\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://co2datashare.org/dataset/sleipner-4d-seismic-dataset\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-17T14:19:20.000Z\",\"registered\":\"2020-01-17T14:19:21.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bibsys.uninett\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite808\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T05:01:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"figshare.dud\",\"type\":\"clients\",\"attributes\":{\"name\":\"figshare DUD datacenter\",\"symbol\":\"FIGSHARE.DUD\",\"year\":2016,\"contactEmail\":\"danielduduta@figshare.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"figsh.com,dhs-publicaccess.st.dhs.gov,figsh.us,figshare.us\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-07-20T08:29:35.000Z\",\"updated\":\"2019-11-13T13:51:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"figshare\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.soton\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Southampton\",\"symbol\":\"BL.SOTON\",\"year\":2012,\"contactEmail\":\"I.A.Stark@soton.ac.uk\",\"alternateName\":null,\"description\":\"ePrints Soton is the University's Research Repository. It contains journal articles, books, PhD theses, conference papers, data, reports, working papers, art exhibitions and more. Where possible, journal articles and conference proceedings are uploaded into ePrints and made open access.\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"soton.ac.uk,worldpop.org.uk\",\"re3data\":\"https://doi.org/10.17616/R3H05B\",\"opendoar\":null,\"issn\":null,\"url\":\"https://eprints.soton.ac.uk/\",\"created\":\"2012-10-03T16:00:24.000Z\",\"updated\":\"2018-11-24T18:40:59.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.exeter\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Exeter\",\"symbol\":\"BL.EXETER\",\"year\":2016,\"contactEmail\":\"P.Liebetrau@exeter.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"exeter.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-06-22T13:23:03.000Z\",\"updated\":\"2018-08-26T01:30:58.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cisti.ubc\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of British Columbia\",\"symbol\":\"CISTI.UBC\",\"year\":2015,\"contactEmail\":\"eugene.barsky@ubc.ca\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"ubc.ca\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2015-08-04T20:15:03.000Z\",\"updated\":\"2019-01-24T01:24:35.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cisti\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cnrst.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Test IMIST\",\"symbol\":\"CNRST.TEST\",\"year\":2019,\"contactEmail\":\"ayssi@imist.ma\",\"alternateName\":null,\"description\":null,\"language\":[\"fr\"],\"clientType\":\"periodical\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"created\":\"2019-11-29T11:12:15.000Z\",\"updated\":\"2019-12-10T10:20:02.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cnrst\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bibsys.uninett\",\"type\":\"clients\",\"attributes\":{\"name\":\"UNINETT Sigma AS, Norway\",\"symbol\":\"BIBSYS.UNINETT\",\"year\":2016,\"contactEmail\":\"maria.iozzi@uninett.no\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"norstore.no\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-04-20T09:04:56.000Z\",\"updated\":\"2019-11-04T10:58:20.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bibsys\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1336099,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1145128},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":112180},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":78791}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":876597},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":151536},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":94592},{\"id\":\"other\",\"title\":\"Other\",\"count\":72569},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12051},{\"id\":\"software\",\"title\":\"Software\",\"count\":7350},{\"id\":\"image\",\"title\":\"Image\",\"count\":7258},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4509},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":670},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":644},{\"id\":\"service\",\"title\":\"Service\",\"count\":116},{\"id\":\"event\",\"title\":\"Event\",\"count\":88},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":77},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52},{\"id\":\"model\",\"title\":\"Model\",\"count\":39}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":252942},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007650},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":2002},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":2},{\"id\":\"2050\",\"title\":\"2050\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":17},{\"id\":\"2024\",\"title\":\"2024\",\"count\":24},{\"id\":\"2023\",\"title\":\"2023\",\"count\":30},{\"id\":\"2022\",\"title\":\"2022\",\"count\":41},{\"id\":\"2021\",\"title\":\"2021\",\"count\":81},{\"id\":\"2020\",\"title\":\"2020\",\"count\":131327},{\"id\":\"2019\",\"title\":\"2019\",\"count\":340886},{\"id\":\"2018\",\"title\":\"2018\",\"count\":83114},{\"id\":\"2017\",\"title\":\"2017\",\"count\":38031},{\"id\":\"2016\",\"title\":\"2016\",\"count\":34300},{\"id\":\"2015\",\"title\":\"2015\",\"count\":33232},{\"id\":\"2014\",\"title\":\"2014\",\"count\":35329},{\"id\":\"2013\",\"title\":\"2013\",\"count\":105363},{\"id\":\"2012\",\"title\":\"2012\",\"count\":174834},{\"id\":\"2011\",\"title\":\"2011\",\"count\":40726},{\"id\":\"2010\",\"title\":\"2010\",\"count\":19844},{\"id\":\"2009\",\"title\":\"2009\",\"count\":18733},{\"id\":\"2008\",\"title\":\"2008\",\"count\":21207},{\"id\":\"2007\",\"title\":\"2007\",\"count\":15612},{\"id\":\"2006\",\"title\":\"2006\",\"count\":13393},{\"id\":\"2005\",\"title\":\"2005\",\"count\":10482},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14834},{\"id\":\"2003\",\"title\":\"2003\",\"count\":11372},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13503},{\"id\":\"2001\",\"title\":\"2001\",\"count\":9221},{\"id\":\"2000\",\"title\":\"2000\",\"count\":10544},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7398},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5554},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7325},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4227},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3704},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3153},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3198},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2734},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2543},{\"id\":\"1990\",\"title\":\"1990\",\"count\":3026},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1695},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1638},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1825},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1907},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1667},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1464},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1587},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1395},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1191},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4636},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1056},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1010},{\"id\":\"1977\",\"title\":\"1977\",\"count\":934},{\"id\":\"1976\",\"title\":\"1976\",\"count\":885},{\"id\":\"1975\",\"title\":\"1975\",\"count\":827},{\"id\":\"1974\",\"title\":\"1974\",\"count\":886},{\"id\":\"1973\",\"title\":\"1973\",\"count\":756},{\"id\":\"1972\",\"title\":\"1972\",\"count\":712},{\"id\":\"1971\",\"title\":\"1971\",\"count\":702},{\"id\":\"1970\",\"title\":\"1970\",\"count\":589},{\"id\":\"1969\",\"title\":\"1969\",\"count\":652},{\"id\":\"1968\",\"title\":\"1968\",\"count\":509},{\"id\":\"1967\",\"title\":\"1967\",\"count\":734},{\"id\":\"1966\",\"title\":\"1966\",\"count\":546},{\"id\":\"1965\",\"title\":\"1965\",\"count\":559},{\"id\":\"1964\",\"title\":\"1964\",\"count\":506},{\"id\":\"1963\",\"title\":\"1963\",\"count\":434},{\"id\":\"1962\",\"title\":\"1962\",\"count\":466},{\"id\":\"1961\",\"title\":\"1961\",\"count\":385},{\"id\":\"1960\",\"title\":\"1960\",\"count\":354},{\"id\":\"1959\",\"title\":\"1959\",\"count\":326},{\"id\":\"1958\",\"title\":\"1958\",\"count\":347},{\"id\":\"1957\",\"title\":\"1957\",\"count\":360},{\"id\":\"1956\",\"title\":\"1956\",\"count\":283},{\"id\":\"1955\",\"title\":\"1955\",\"count\":259},{\"id\":\"1954\",\"title\":\"1954\",\"count\":414},{\"id\":\"1953\",\"title\":\"1953\",\"count\":215},{\"id\":\"1952\",\"title\":\"1952\",\"count\":194},{\"id\":\"1951\",\"title\":\"1951\",\"count\":259},{\"id\":\"1950\",\"title\":\"1950\",\"count\":207},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":186},{\"id\":\"1947\",\"title\":\"1947\",\"count\":123},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":74},{\"id\":\"1944\",\"title\":\"1944\",\"count\":138},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":67},{\"id\":\"1938\",\"title\":\"1938\",\"count\":129},{\"id\":\"1937\",\"title\":\"1937\",\"count\":78},{\"id\":\"1936\",\"title\":\"1936\",\"count\":118},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":135},{\"id\":\"1933\",\"title\":\"1933\",\"count\":298},{\"id\":\"1932\",\"title\":\"1932\",\"count\":251},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":163},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":250},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":55},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":46},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":179},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":40},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":66},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":62},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":32},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":44},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":26},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":52},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":40},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1792\",\"title\":\"1792\",\"count\":1},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1451\",\"title\":\"1451\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":125218},{\"id\":\"2019\",\"title\":\"2019\",\"count\":279219},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38269},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1658},{\"id\":\"2016\",\"title\":\"2016\",\"count\":129},{\"id\":\"2015\",\"title\":\"2015\",\"count\":72},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803750},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":172887},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":61851},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":40568},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":34769},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27727},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":20315},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":19320},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15109},{\"id\":\"gdcc\",\"title\":\"The Global Dataverse Community Consortium (GDCC)\",\"count\":12041},{\"id\":\"gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":10308},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":9580},{\"id\":\"pitp\",\"title\":\"Perimeter Institute for Theoretical Physics\",\"count\":8382},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":7974}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803750},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":172887},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27564},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":25487},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24798},{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17459},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17295},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15031},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13192},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"gbif.gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":10307},{\"id\":\"gdcc.harvard-test\",\"title\":\"Harvard Dataverse Test Account\",\"count\":9520},{\"id\":\"pitp.pirsa\",\"title\":\"Perimeter Institute\",\"count\":8382}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8379},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/05cc98565\",\"title\":\"Bank of Canada\",\"count\":178},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":98},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":92},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":26},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":25},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":19},{\"id\":\"ror.org/00za53h95\",\"title\":\"Johns Hopkins University\",\"count\":12},{\"id\":\"ror.org/00qnfvz68\",\"title\":\"Open Society Foundations\",\"count\":6},{\"id\":\"ror.org/03zbnzt98\",\"title\":\"Woods Hole Oceanographic Institution\",\"count\":4},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/04d8ztx87\",\"title\":\"Agroscope\",\"count\":3},{\"id\":\"ror.org/05591te55\",\"title\":\"Ludwig Maximilian University of Munich\",\"count\":3}],\"prefixes\":[{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":172887},{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130738},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58818},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56676},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34961},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27564},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20720},{\"id\":\"10.17863\",\"title\":\"10.17863\",\"count\":19592},{\"id\":\"10.1038\",\"title\":\"10.1038\",\"count\":19569},{\"id\":\"10.33520\",\"title\":\"10.33520\",\"count\":19361},{\"id\":\"10.1093\",\"title\":\"10.1093\",\"count\":18334},{\"id\":\"10.3390\",\"title\":\"10.3390\",\"count\":18301}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2891},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":713}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1045354},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":9331},{\"id\":\"4.3\",\"title\":\"Schema 4.3\",\"count\":13},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":12},{\"id\":\"2.1\",\"title\":\"Schema 2.1\",\"count\":2},{\"id\":\"2.3\",\"title\":\"Schema 2.3\",\"count\":1},{\"id\":\"metadata version 4\",\"title\":\"Schema metadata version 4\",\"count\":1}],\"sources\":[{\"id\":\"levriero\",\"title\":\"Levriero\",\"count\":803750},{\"id\":\"mds\",\"title\":\"Mds\",\"count\":380943},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":23690},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":2698},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":551},{\"id\":\"test\",\"title\":\"Test\",\"count\":21},{\"id\":\"Elettra\",\"title\":\"Elettra\",\"count\":5},{\"id\":\"MCX\",\"title\":\"Mcx\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":24493},{\"id\":\"404\",\"title\":\"404\",\"count\":3347},{\"id\":\"403\",\"title\":\"403\",\"count\":977},{\"id\":\"401\",\"title\":\"401\",\"count\":284},{\"id\":\"500\",\"title\":\"500\",\"count\":279},{\"id\":\"503\",\"title\":\"503\",\"count\":144},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":11},{\"id\":\"502\",\"title\":\"502\",\"count\":2}],\"linksChecked\":880,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":65476},{\"id\":\"1\",\"title\":\"1\",\"count\":3898}],\"linkChecksSchemaOrgId\":1647,\"linkChecksDcIdentifier\":4751,\"linkChecksCitationDoi\":5,\"subjects\":[{\"id\":\"Anatomy\",\"title\":\"Anatomy\",\"count\":70282},{\"id\":\"80505 Web Technologies (excl. Web Search)\",\"title\":\"80505 Web Technologies (Excl. Web Search)\",\"count\":57738},{\"id\":\"Cat\",\"title\":\"Cat\",\"count\":19371},{\"id\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, etc.)\",\"title\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, Etc.)\",\"count\":11946},{\"id\":\"biodiversity\",\"title\":\"Biodiversity\",\"count\":5717},{\"id\":\"GBIF\",\"title\":\"Gbif\",\"count\":5708},{\"id\":\"species occurrences\",\"title\":\"Species Occurrences\",\"count\":5708},{\"id\":\"Disparities\",\"title\":\"Disparities\",\"count\":5457},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":4580},{\"id\":\"Paleoecology\",\"title\":\"Paleoecology\",\"count\":4522},{\"id\":\"Cosmology\",\"title\":\"Cosmology\",\"count\":4179},{\"id\":\"60101 Analytical Biochemistry\",\"title\":\"60101 Analytical Biochemistry\",\"count\":3495},{\"id\":\"Natural Sciences - Mathematics (1.1)\",\"title\":\"Natural Sciences Mathematics (1.1)\",\"count\":3467},{\"id\":\"80101 Adaptive Agents and Intelligent Robotics\",\"title\":\"80101 Adaptive Agents And Intelligent Robotics\",\"count\":3462},{\"id\":\"Research\",\"title\":\"Research\",\"count\":3431}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 80864, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/2nrlcf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/2nrlcf\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1982-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/2NRLCF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/1aoley\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/1aoley\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/1AOLEY\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1982)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/2nrlcf\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/1aoley\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK27HBR5F\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:26.000Z\",\"registered\":\"2020-05-04T16:06:28.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1981)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/5msoef\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/isjqad\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2EFULDR\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:14.000Z\",\"registered\":\"2020-05-04T16:06:16.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/isjqad\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/isjqad\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/ISJQAD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:19.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/5msoef\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/5msoef\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1981-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/5MSOEF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:18.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1978)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/xe1f9t\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/norj5n\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK21CFLYG\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:01.000Z\",\"registered\":\"2020-05-04T16:06:02.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/norj5n\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/norj5n\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/NORJ5N\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.cdsp\",\"type\":\"clients\",\"attributes\":{\"name\":\"Centre de données socio-politiques\",\"symbol\":\"INIST.CDSP\",\"year\":2016,\"contactEmail\":\"genevieve.michaud@sciencespo.fr\",\"alternateName\":null,\"description\":\"Center for socio-political data (CNRS & Sciences Po)\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"dataspire-test.sciencespo.fr,cdsp.sciences-po.fr,sciences-po.fr,bequali.fr\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://cdsp.sciences-po.fr/en/\",\"created\":\"2016-08-30T14:13:09.000Z\",\"updated\":\"2019-11-14T10:13:57.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1353064,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1146112},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":115757},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":91195}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":877168},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":154442},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":95321},{\"id\":\"other\",\"title\":\"Other\",\"count\":81907},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12069},{\"id\":\"software\",\"title\":\"Software\",\"count\":7382},{\"id\":\"image\",\"title\":\"Image\",\"count\":7295},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4511},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":680},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":671},{\"id\":\"service\",\"title\":\"Service\",\"count\":117},{\"id\":\"model\",\"title\":\"Model\",\"count\":109},{\"id\":\"event\",\"title\":\"Event\",\"count\":89},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":78},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":269886},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007671},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":5353},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":2},{\"id\":\"2050\",\"title\":\"2050\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":17},{\"id\":\"2024\",\"title\":\"2024\",\"count\":24},{\"id\":\"2023\",\"title\":\"2023\",\"count\":30},{\"id\":\"2022\",\"title\":\"2022\",\"count\":41},{\"id\":\"2021\",\"title\":\"2021\",\"count\":81},{\"id\":\"2020\",\"title\":\"2020\",\"count\":142402},{\"id\":\"2019\",\"title\":\"2019\",\"count\":341496},{\"id\":\"2018\",\"title\":\"2018\",\"count\":83344},{\"id\":\"2017\",\"title\":\"2017\",\"count\":38201},{\"id\":\"2016\",\"title\":\"2016\",\"count\":34969},{\"id\":\"2015\",\"title\":\"2015\",\"count\":33513},{\"id\":\"2014\",\"title\":\"2014\",\"count\":35568},{\"id\":\"2013\",\"title\":\"2013\",\"count\":105435},{\"id\":\"2012\",\"title\":\"2012\",\"count\":174877},{\"id\":\"2011\",\"title\":\"2011\",\"count\":40755},{\"id\":\"2010\",\"title\":\"2010\",\"count\":19898},{\"id\":\"2009\",\"title\":\"2009\",\"count\":18753},{\"id\":\"2008\",\"title\":\"2008\",\"count\":21227},{\"id\":\"2007\",\"title\":\"2007\",\"count\":15628},{\"id\":\"2006\",\"title\":\"2006\",\"count\":13398},{\"id\":\"2005\",\"title\":\"2005\",\"count\":10487},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14834},{\"id\":\"2003\",\"title\":\"2003\",\"count\":11372},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13506},{\"id\":\"2001\",\"title\":\"2001\",\"count\":9222},{\"id\":\"2000\",\"title\":\"2000\",\"count\":10545},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7401},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5554},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7325},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4228},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3705},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3153},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3198},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2735},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2543},{\"id\":\"1990\",\"title\":\"1990\",\"count\":3026},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1695},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1638},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1825},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1907},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1646},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1464},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1587},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1395},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1191},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4635},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1057},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1010},{\"id\":\"1977\",\"title\":\"1977\",\"count\":934},{\"id\":\"1976\",\"title\":\"1976\",\"count\":885},{\"id\":\"1975\",\"title\":\"1975\",\"count\":828},{\"id\":\"1974\",\"title\":\"1974\",\"count\":886},{\"id\":\"1973\",\"title\":\"1973\",\"count\":756},{\"id\":\"1972\",\"title\":\"1972\",\"count\":712},{\"id\":\"1971\",\"title\":\"1971\",\"count\":702},{\"id\":\"1970\",\"title\":\"1970\",\"count\":589},{\"id\":\"1969\",\"title\":\"1969\",\"count\":652},{\"id\":\"1968\",\"title\":\"1968\",\"count\":509},{\"id\":\"1967\",\"title\":\"1967\",\"count\":734},{\"id\":\"1966\",\"title\":\"1966\",\"count\":546},{\"id\":\"1965\",\"title\":\"1965\",\"count\":559},{\"id\":\"1964\",\"title\":\"1964\",\"count\":506},{\"id\":\"1963\",\"title\":\"1963\",\"count\":434},{\"id\":\"1962\",\"title\":\"1962\",\"count\":466},{\"id\":\"1961\",\"title\":\"1961\",\"count\":385},{\"id\":\"1960\",\"title\":\"1960\",\"count\":354},{\"id\":\"1959\",\"title\":\"1959\",\"count\":326},{\"id\":\"1958\",\"title\":\"1958\",\"count\":347},{\"id\":\"1957\",\"title\":\"1957\",\"count\":360},{\"id\":\"1956\",\"title\":\"1956\",\"count\":283},{\"id\":\"1955\",\"title\":\"1955\",\"count\":259},{\"id\":\"1954\",\"title\":\"1954\",\"count\":414},{\"id\":\"1953\",\"title\":\"1953\",\"count\":215},{\"id\":\"1952\",\"title\":\"1952\",\"count\":194},{\"id\":\"1951\",\"title\":\"1951\",\"count\":259},{\"id\":\"1950\",\"title\":\"1950\",\"count\":207},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":186},{\"id\":\"1947\",\"title\":\"1947\",\"count\":123},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":74},{\"id\":\"1944\",\"title\":\"1944\",\"count\":138},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":67},{\"id\":\"1938\",\"title\":\"1938\",\"count\":129},{\"id\":\"1937\",\"title\":\"1937\",\"count\":78},{\"id\":\"1936\",\"title\":\"1936\",\"count\":118},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":135},{\"id\":\"1933\",\"title\":\"1933\",\"count\":298},{\"id\":\"1932\",\"title\":\"1932\",\"count\":251},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":163},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":250},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":55},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":46},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":179},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":40},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":67},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":63},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":32},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":45},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":26},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":52},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":40},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1792\",\"title\":\"1792\",\"count\":1},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":10},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1451\",\"title\":\"1451\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2},{\"id\":\"1000\",\"title\":\"1000\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":129677},{\"id\":\"2019\",\"title\":\"2019\",\"count\":279242},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38269},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1658},{\"id\":\"2016\",\"title\":\"2016\",\"count\":129},{\"id\":\"2015\",\"title\":\"2015\",\"count\":72},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803873},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":174097},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":62022},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":46944},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":41843},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27728},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":20351},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":19625},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15129}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803873},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":174097},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27564},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":25487},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24881},{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17495},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17297},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15051}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8379},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/05cc98565\",\"title\":\"Bank of Canada\",\"count\":178},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":99},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":92},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":26},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":25},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":19},{\"id\":\"ror.org/00za53h95\",\"title\":\"Johns Hopkins University\",\"count\":12}],\"prefixes\":[{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":174097},{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130739},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58819},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56678},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34962},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27564},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20740}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2920},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":742}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1062598},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":21530},{\"id\":\"4.3\",\"title\":\"Schema 4.3\",\"count\":13},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":12},{\"id\":\"2.1\",\"title\":\"Schema 2.1\",\"count\":2},{\"id\":\"2.3\",\"title\":\"Schema 2.3\",\"count\":1},{\"id\":\"metadata version 4\",\"title\":\"Schema metadata version 4\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":25679},{\"id\":\"404\",\"title\":\"404\",\"count\":3535},{\"id\":\"403\",\"title\":\"403\",\"count\":998},{\"id\":\"401\",\"title\":\"401\",\"count\":294},{\"id\":\"500\",\"title\":\"500\",\"count\":277},{\"id\":\"503\",\"title\":\"503\",\"count\":144},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":10},{\"id\":\"502\",\"title\":\"502\",\"count\":3}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -142,8 +142,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:54.246Z", - "time": 1696, + "startedDateTime": "2020-05-04T16:41:17.594Z", + "time": 1345, "timings": { "blocked": -1, "connect": -1, @@ -151,7 +151,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1696 + "wait": 1345 } }, { @@ -183,11 +183,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -206,8 +206,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:55.994Z", - "time": 143, + "startedDateTime": "2020-05-04T16:41:18.962Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -215,7 +215,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 143 + "wait": 90 } }, { @@ -290,11 +290,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -313,8 +313,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:56.147Z", - "time": 183, + "startedDateTime": "2020-05-04T16:41:19.059Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -322,7 +322,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 183 + "wait": 135 } } ], diff --git a/recordings/Acceptance-organization_admin-doi_2523147597/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-organization_admin-doi_2523147597/visiting-specific-doi_4109340652/recording.har index ba89aa878..e1a444d27 100644 --- a/recordings/Acceptance-organization_admin-doi_2523147597/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-organization_admin-doi_2523147597/visiting-specific-doi_4109340652/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | doi/visiting specific doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8663, + "bodySize": 8723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8663, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8723, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:57.084Z", - "time": 153, + "startedDateTime": "2020-05-04T16:41:19.706Z", + "time": 128, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 153 + "wait": 128 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5381, + "bodySize": 5421, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5381, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5421, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:57.393Z", - "time": 136, + "startedDateTime": "2020-05-04T16:41:20.015Z", + "time": 145, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 145 } }, { @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:57.393Z", - "time": 205, + "startedDateTime": "2020-05-04T16:41:20.015Z", + "time": 195, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 205 + "wait": 195 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:57.548Z", - "time": 98, + "startedDateTime": "2020-05-04T16:41:20.184Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 93 } } ], diff --git a/recordings/Acceptance-organization_admin-provider_1463291290/editing-provider-DataCite-password-form_4155657126/recording.har b/recordings/Acceptance-organization_admin-provider_1463291290/editing-provider-DataCite-password-form_4155657126/recording.har index 3264ef997..58dc6aa98 100644 --- a/recordings/Acceptance-organization_admin-provider_1463291290/editing-provider-DataCite-password-form_4155657126/recording.har +++ b/recordings/Acceptance-organization_admin-provider_1463291290/editing-provider-DataCite-password-form_4155657126/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | provider/editing provider DataCite password form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T14:36:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-24T14:38:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-24T18:52:24.411Z", - "time": 270, + "startedDateTime": "2020-05-04T16:41:22.173Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -72,126 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 270 - } - }, - { - "_id": "4f956c27146dcb23cd690776bf332276", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 671, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/random" - }, - "response": { - "bodySize": 32, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 32, - "text": "{\"phrase\":\"Lingo=Catfight+oven\"}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-24T18:52:24.778Z", - "time": 123, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 123 - } - }, - { - "_id": "7de298c1dd85bee2cc516e8dc33aecd8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 983, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, - { - "name": "accept", - "value": "application/vnd.api+json" - } - ], - "headersSize": 733, - "httpVersion": "HTTP/1.1", - "method": "PATCH", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"id\":\"datacite\",\"attributes\":{\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"logoUrl\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"website\":\"https://datacite.org\",\"isActive\":true,\"passwordInput\":null,\"nonProfitStatus\":\"non-profit\",\"hasPassword\":true,\"keepPassword\":false,\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"secondaryServiceContact\":{},\"serviceContact\":{},\"votingContact\":{},\"joined\":null,\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T14:36:47.000Z\"},\"relationships\":{\"consortium\":{\"data\":{\"type\":\"providers\",\"id\":\"dc\"}}},\"type\":\"providers\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/providers/datacite" - }, - "response": { - "bodySize": 5319, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 5319, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-24T18:52:24.980Z", - "time": 197, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 197 + "wait": 95 } } ], diff --git a/recordings/Acceptance-organization_admin-provider_1463291290/going-to-provider-DataCite-edit-form_3743603896/recording.har b/recordings/Acceptance-organization_admin-provider_1463291290/going-to-provider-DataCite-edit-form_3743603896/recording.har index 1c081d6a2..952d0a91c 100644 --- a/recordings/Acceptance-organization_admin-provider_1463291290/going-to-provider-DataCite-edit-form_3743603896/recording.har +++ b/recordings/Acceptance-organization_admin-provider_1463291290/going-to-provider-DataCite-edit-form_3743603896/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | provider/going to provider DataCite edit form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:58.879Z", - "time": 93, + "startedDateTime": "2020-05-04T16:41:21.289Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 100 } } ], diff --git a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-dois_685517209/recording.har b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-dois_685517209/recording.har index de56741b4..66250c259 100644 --- a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-dois_685517209/recording.har +++ b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-dois_685517209/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | provider/visiting provider DataCite dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:00.390Z", - "time": 94, + "startedDateTime": "2020-05-04T16:41:23.411Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 109 } }, { @@ -183,11 +183,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=datacite&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 64705, + "bodySize": 47537, "content": { "mimeType": "application/json; charset=utf-8", - "size": 64705, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/6brg-2m37\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/6brg-2m37\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5438/6brg-2m37\",\"identifierType\":\"DOI\"},{\"identifier\":\"937-0-4523-12357-6\",\"identifierType\":\"ISBN\"}],\"creators\":[{\"name\":\"Smith, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Smith\",\"affiliation\":[]},{\"name\":\"つまらないものですが\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"pl\",\"title\":\"Właściwości rzutowań podprzestrzeniowych\"},{\"lang\":\"en\",\"title\":\"Translation of Polish titles\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Springer\",\"container\":{},\"publicationYear\":2010,\"subjects\":[{\"lang\":\"en\",\"subject\":\"830 German & related literatures\",\"subjectScheme\":\"DDC\"},{\"lang\":\"en\",\"subject\":\"Polish Literature\"}],\"contributors\":[{\"name\":\"Doe, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Doe\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0001-5393-1421\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2010\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Monograph\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5272/oldertestpub\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"256 pages\"],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution-NoDerivs 2.0 Generic\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nd/2.0\"}],\"descriptions\":[{\"lang\":\"la\",\"description\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea\\n takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores\\n et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.datacite.org\",\"contentUrl\":null,\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-08-30T23:02:16.000Z\",\"registered\":\"2018-08-30T23:03:22.000Z\",\"published\":\"2010\",\"updated\":\"2020-04-23T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.transfer\",\"type\":\"clients\"}}}},{\"id\":\"10.24365/interesting_pub\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24365/interesting_pub\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24365/interesting_pub\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Smith, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Smith\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Interesting Pub\"}],\"publisher\":\"Me\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://identifiers.globus.org/id/10.24365/interesting_pub/landingpage\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-04-19T04:33:35.000Z\",\"registered\":\"2018-04-19T04:34:03.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:01:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.globus\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/f6a5121e20200744dc8c593db8895724\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/f6a5121e20200744dc8c593db8895724\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/f6a5121e20200744dc8c593db8895724\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://localhost:8088/package/eml/knb-lter-nwk/1002106/1\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Carroll, Utah\",\"nameType\":\"Personal\",\"givenName\":\"Utah\",\"familyName\":\"Carroll\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Fictional Bug Count in Nonesuch, Utah & Anysuch, Arizona\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost/nis/mapbrowse?packageid=knb-lter-nwk.1002106.1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-03T04:20:06.000Z\",\"registered\":\"2020-03-03T04:20:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:01:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}},{\"id\":\"10.24418/r30e-t080\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24418/r30e-t080\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24418/r30e-t080\",\"identifierType\":\"DOI\"}],\"creators\":[{\"affiliation\":[]}],\"titles\":[{\"title\":\"Test-05-13::12:33\"}],\"publisher\":\"menRva. Galter Health Sciences Library & Learning Center\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost:5000/records/11\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-13T17:33:54.000Z\",\"registered\":\"2019-05-13T17:33:55.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.ghsl\",\"type\":\"clients\"}}}},{\"id\":\"10.0322/bldev.app.15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0322/bldev.app.15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0322/bldev.app.15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[]},{\"name\":\"Guest\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Ensemble Tracking\"}],\"publisher\":\"brainlife.io\",\"container\":{},\"publicationYear\":2017,\"subjects\":[{\"subject\":\"tracking\"}],\"contributors\":[{\"name\":\"Kitchell, Lindsey\",\"nameType\":\"Personal\",\"givenName\":\"Lindsey\",\"familyName\":\"Kitchell\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"McPherson, Brent\",\"nameType\":\"Personal\",\"givenName\":\"Brent\",\"familyName\":\"McPherson\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Undefined\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"This service uses MRtrix 0.2.12 to do ensemble tracking using tensor and constrained spherical deconvolution (csd) algorithms. It generates a large set of candidate streamlines using a tensor-based deterministic model, csd-based deterministic model, and csd-based probabilistic model. The csd-based models can be computed at lmax values of 2, 4, 6, 8, 10, and 12. All candidate streamlines are combined into a single track.mat file. If you know the max lmax value for your data input the value for max_lmax, otherwise leave it blank and it will be calculated for you. If you wish to use just deterministic tracking (MRtrix streamtrack parameter SD_STREAM) check do_deterministic. If you wish to use just probabilistic tracking (MRtrix streamtrack parameter SD_PROB) check do_probabilistic If you wish to use the tensor tracking (MRtrix streamtrack parameter DT_STREAM) check do_tensor. By default it will use all three tracking methods. For more information about Ensemble Tractography see Takemura, H., Caiafa, C. F., Wandell, B. A., & Pestilli, F. (2016). Ensemble tractography. PLoS computational biology, 12(2), e1004692.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost.brainlife.io/app/592dbbccb3cd7c00211dc235\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-07-31T02:06:43.000Z\",\"registered\":\"2018-07-31T02:07:03.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:01:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.bl\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70048/c133-cc95\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70048/c133-cc95\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70048/c133-cc95\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"De Graaf, M.\",\"nameType\":\"Personal\",\"givenName\":\"M.\",\"familyName\":\"De Graaf\",\"affiliation\":[{\"name\":\"Royal Netherlands Meteorological Institute (KNMI)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1282-6582\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Stammes, P.\",\"nameType\":\"Personal\",\"givenName\":\"P.\",\"familyName\":\"Stammes\",\"affiliation\":[{\"name\":\"Royal Netherlands Meteorological Institute (KNMI)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-2488-3990\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Tilstra, L.G.\",\"nameType\":\"Personal\",\"givenName\":\"L.G.\",\"familyName\":\"Tilstra\",\"affiliation\":[{\"name\":\"Royal Netherlands Meteorological Institute (KNMI)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1282-6582\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"OMI-MODIS aerosol direct radiative effect over clouds, version 1.0\"}],\"publisher\":\"Royal Netherlands Meteorological Institute (KNMI)\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Atmosphere above-cloud aerosol direct radiative effect\"},{\"subject\":\"OMI\"},{\"subject\":\"MODIS\"},{\"subject\":\"TEMIS\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Satellite data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1029/2011jd017160\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The OMI-MODIS above-cloud aerosol Direct Radiative Effect (DRE) database is available for all cloud scenes in an area over the south-east Atlantic (20W - 10E, 20S - 10N) from 2002 to present during the months June - October. This is a period of massive vegetation burning in southern Africa during the dry season and often smoke plumes can be observed drifting over the Atlantic ocean. The aerosol DRE from OMI-MODIS indicates the warming effect of the smoke when it overlies clouds due to absorption of sunlight. This is measured in Watts per square meter (W/m2).The data are accompanied by images that show an overview of the warming effect on a particular day. The OMI-MODIS aerosol DRE is overplotted over MODIS RGB showing clouds.The database is described in the following paper:M. de Graaf, L.G. Tilstra, and P. Stammes, Aerosol direct radiative effect over clouds from a synergy of OMI and MODIS reflectances, Atmos. Meas. Techn., https://doi.org/10.5194/amt-2019-53, 2019, doi:/10.5194/amt-2019-53For more information, see http://www.temis.nl/climate/adre.html\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":\"+10.0\",\"northBoundLatitude\":\"+10.0\",\"southBoundLatitude\":\"-20.0\",\"westBoundLongitude\":\"-20.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Dutch National Programme for Space Research\",\"funderName\":\"Netherlands Space Office\",\"awardNumber\":\"ALW-GO/12-32\"}],\"url\":\"http://example.com\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-10T12:26:52.000Z\",\"registered\":\"2019-10-10T12:28:02.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:57.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.rph\",\"type\":\"clients\"}}}},{\"id\":\"10.70126/nbc0-qy25\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70126/nbc0-qy25\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70126/nbc0-qy25\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"University Of Washington Libraries\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"RDA Application Profile Extension\"}],\"publisher\":\"University of Washington Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"LibraryData\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1-0-1\",\"rightsList\":[{\"rights\":\"CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":null,\"description\":\"Meereswissenschaftliche Berichte No 37 1999 - Marine Science Reports No 37 1999\",\"descriptionType\":\"SeriesInformation\"},{\"lang\":null,\"description\":\"Meereswissenschaftliche Berichte No 37 1999 - Marine Science Reports No 37 1999\",\"descriptionType\":\"SeriesInformation\"},{\"lang\":\"en\",\"description\":\"The results of the biological environmental monitoring of 1998 carried out by the Baltic Sea Research Institute (IOW) within the HELCOM programme are presented and discussed. In 1998, the spring bloom of phytoplankton started in Mecklenburg Bight in the mid of March and was produced mainly by diatoms (Chaetoceros sp.). At later stages, the contribution of dinoflagellates (Gymnodinium spp.) increased continuously. In the Arkona Sea, the spring bloom started approximately on 20 March (Chaetoceros sp.), again followed by Gymnodinium spp. Also in the Bornholm Sea, the spring bloom started at the end of March, but was dominated by Gymnodinium spp. from the beginning. In summer, cyanobacteria and several flagellates were the dominant groups in the Baltic Proper. The diatom Dactyliosolen fragilissimus formed a bloom in Mecklenburg Bight in June/July 1998. A sample from 15 September 1998 from the Arkona Sea showed an emormous bloom of Prorocentrum micans. In late autumn, the diatom Coscinodiscus granii dominated in the Baltic Proper but the dinoflagellate Ceratium tripos in Mecklenburg Bight. The statements on phytoplankton development are supported by chlorophyll data (gathered both by fluorometric analysis and remote sensing). The chlorophyll data are especially useful for long-term trend analyses. Different hypotheses for explaining the relatively late spring blooms in the eastern parts of the Baltic Sea and the long-term replacement of diatoms by dinoflagellates in the spring blooms are discussed. The analysis of sedimenting particles for the year 1997 revealed the prevailance of the spring season for the vertical flux of particulate matter, in contrast to 1996, when high sedimentation occurred also in late summer/autumn. The qualitative analysis of sedimenting phytoplankton species showed, however, similar patterns in 1996 and 1997. The seasonal cycle of pelagic algae was well reflected in the sediment traps. The abundance of rotatoria (Synchaeta sp.) increased strongly in comparison with the previous year (maximum in May, frequently a second maximum in October), but the abundance of copepods decreased. A seasonal shift in the copepod maxima was conspicuous: in 1997, the peak was reached only in August, but in 1998 already in May (exception: deep water in the Bornholm Sea and Eastern Gotland Sea). The abundance of cladocerans in 1998 was clearly lower than in 1997, especially in August. It has to be admitted that the real abundance peaks of the different zooplankton groups may have been missed due to a rather low sampling frequency. Methodological problems are discussed in detail. The number of species of macrozoobenthos increased when compared with data from previous years. It amounted to 83 in 1998 and ranged from 3 in the Bornholm Sea to 49 in the Fehmarn Belt. The well-flushed, sandy or gravelly areas of Fehmarn Belt, Darss Sill and southern Arkona Sea were especially rich in species. At silty stations in Mecklenburg Bight, the stock of Euchone papillosa (Polychaeta) recovered. As in the previous year, the glacial relicts Pontoporeia femorata and Saduria entomon occurred at several stations. Also the mussels Astarte borealis and A. elliptica were noticed. Some species, absent for years or decades in Mecklenburg Bight, Arkona Sea and Pomeranian Bay, are still missing: Monoporeia affinis, Buccinum undatum, Nassarius reticulatus, Astarte montagui, Scrobicularia plana and Macoma calcarea. The density of individuals of macrozoobenthos ranged from 13 ind. m-2 (in Bornholm Sea) to 7.235 ind. m-2 (southern Arkona Sea) in 1998. The biomass (as ash-free dry weight) was between 0,01 g m-2 (Bornholm Sea) and 48,4 g m-2 (east of Darss Sill). For a better assessing of the macrozoobenthos, a dredge and video technique were applied besides the traditional van-Veen grab. Seven additional taxa could be found by these new methods. Moreover, the video images made an analysis of habitat structures, the substrate and the patchiness possible.\",\"descriptionType\":\"Abstract\"},{\"lang\":\"de-DE\",\"description\":\"Während die Phytoplankton-Entwicklung im Jahre 1997 ungewöhnlich früh begann, kann das Jahr 1998 in dieser Hinsicht als ein “normales” Jahr angesehen werden. Die Frühjahrsblüte begann in der Mecklenburger Bucht Mitte März mit einer Kieselalgenentwicklung (Chaetoceros spp.), die im April in eine Phase mit Dinophyceen-Dominanz (Gymnodinium spp.) überging. In der Arkonasee begann die Frühjahrsblüte um den 20. März 1998 mit einer Kieselalgenentwicklung (Chaetoceros spp.), an die sich Anfang April eine Dinoflagellatenblüte (Gymnodinium spp.) anschloß. Auch in der Bornholmsee begann die Blüte schon Ende März, wurde hier aber von Anfang an von Gymnodinium spp. dominiert. Im Sommer herrschten in der eigentlichen Ostsee Cyanobakterien und diverse Flagellaten vor. Die Kieselalge Dactyliosolen fragilissimus bildete im Juni/Juli 1998 in der Mecklenburger Bucht eine Blüte. Eine Probe vom 15.9.98 aus der Arkonasee zeigte eine gewaltige Blüte von Prorocentrum micans. Im Herbst dominierte in der eigentlichen Ostsee die Kieselalge Coscinodiscus granii und in der Mecklenburger Bucht der Dinoflagellat Ceratium tripos. Die Aussagen zur Phytoplanktonentwicklung werden auch von Chlorophyll-Daten (sowohl analytisch als auch aus Satellitenbildern ermittelt) gestützt. Die Chlorophyll-Daten sind insbesondere für die Analyse von Langzeit-Trends der Phytoplankton-Biomasse nützlich. Verschiedene Hypothesen zur Erklärung des späteren Beginns der Frühjahrsblüte in den östlicheren Teilen der Ostsee und zur Verdrängung der Kieselalgen werden diskutiert. Die Analyse der Sinkstoffe zeigte für das Jahr 1997 die Frühjahrsphase als quantitativ wichtigsten Zeitraum für den Partikelfluß. Dies steht im Gegensatz zum Vorjahr, in dem die Mengen der Frühjahrs- und Spätsommer/Herbstsedimentation ausgeglichener waren. Bei der qualitativen Analyse der absinkenden Phytoplanktonarten und -gruppen zeigte sich allerdings ein ähnliches Bild wie im Vorjahr. Die saisonale Sukzession der pelagischen Algengruppen in der Deckschicht wird im Fallenmaterial gut abgebildet. Im Zooplankton hat die Abundanz der Rotatorien (Synchaeta spec.) im Vergleich zum Vorjahr stark zugenommen (Maximum im Mai, oft noch ein zweites im Oktober), die der Copepoden dagegen im allgemeinen abgenommen. Auffällig ist die jahreszeitliche Verschiebung der Maxima der Copepodenabundanz: 1997 wurden die Maxima erst im August erreicht, 1998 schon im Mai (Ausnahme: die Tiefenschichten im Bornholm- und Gotlandbecken). Die Abundanz der Cladoceren war 1998 deutlich geringer als 1997, insbes. im August. Es kann allerdings nicht ausgeschlossen werden, daß die realen Abundanzmaxima der verschiedenen Gruppen wegen der geringen Probennahmefrequenz durch das zeitliche Beprobungsraster gefallen sind. Auf generelle methodische Probleme wird ausführlich eingegangen. Die Artenzahl des Makrozoobenthos nahm im Vergleich zu den Vorjahren zu und erreichte insgesamt 83. Sie lag 1998 zwischen 3 (Bornholmbecken) und 49 (Fehmarnbelt). Als besonders artenreich erwiesen sich die gut durchströmten und damit sandig-kiesigen Bereiche Fehmarnbelt, Darßer Schwelle und südliche Arkonasee. Auf den schlickigen Stationen in der Mecklenburger Bucht wäre z.B. Euchone papillosa (Polychaeta) hervorzuheben, dessen Bestände sich seit einiger Zeit wieder zu erholen scheinen. Wie im Vorjahr konnten auch 1998 an mehreren Stationen die Glazialrelikte Pontoporeia femorata und Saduria entomon beobachtet werden. Auch die Muscheln Astarte borealis und A. elliptica wurden an einigen Stationen festgestellt. Dahingegen fehlten einige Arten, die seit Jahren bzw. Jahrzehnten in der südlichen und westlichen Ostsee (Mecklenburger Bucht, Arkonabecken, Pommernbucht) nicht mehr gefunden werden. Dazu zählen Monoporeia affinis, Buccinum undatum, Nassarius reticulatus, Astarte montagui, Scrobicularia plana und Macoma calcarea. Die Individuendichten des Makrozoobenthos lagen 1998 zwischen 13 Ind. m-2 (Bornholmbecken) und 7.235 Ind. m-2 (südliche Arkonasee). Die Biomasse (als aschefreies Trockengewicht) schwankte zwischen 0,01 g m-2 (Bornholmbecken) und 48,4 g m-2 (östlich der Darßer Schwelle). Zur besseren Beurteilung des Makrozoobenthos wurden neben den herkömmlichen van-Veen-Greifern auch eine Dredge und Videotechnik eingestezt. 7 Taxa konnten damit zusätzlich nachgewiesen werden. Außerdem erlaubte die Auswertung des Bildmaterials eine Analyse der Strukturen, des Substrates und der Verteilung (Patchiness) an den Stationen\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://example.org\",\"contentUrl\":null,\"metadataVersion\":6,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-14T14:24:58.000Z\",\"registered\":\"2019-10-14T14:24:58.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:44.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.mary\",\"type\":\"clients\"}}}},{\"id\":\"10.24410/kaust-d28e4\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24410/kaust-d28e4\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24410/kaust-d28e4\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://hdl.handle.net/10754/621882\",\"identifierType\":\"Handle\"}],\"creators\":[{\"name\":\"Grenz, Daryl M.\",\"nameType\":\"Personal\",\"givenName\":\"Daryl M.\",\"familyName\":\"Grenz\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8742-664X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Baessa, Mohamed A.\",\"nameType\":\"Personal\",\"givenName\":\"Mohamed A.\",\"familyName\":\"Baessa\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-9927-5204\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Workshop: Creating Your Institutional Research Repository\"}],\"publisher\":\"KAUST Research Repository\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Presentation\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"In 2002, the Scholarly Publishing and Academic Resources Coalition (SPARC) proposed the concept of an institutional repository to simultaneously disrupt and enhance the state of scholarly communications in the academic world. Thirteen years later, thousands of universities and other institutions have answered this call, but many more have not due to gaps in budgets, awareness and, most of all, practical guidance on creating an institutional repository. This workshop provides you with an essential primer on what it takes to establish a fully-functioning institutional repository. Every aspect of the process will be covered, including policies, procedures, staffing guidelines, workflows and repository technologies.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://kaust.test.openrepository.com/handle/10754/621882\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-06T19:00:04.000Z\",\"registered\":\"2019-07-06T19:00:07.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"clients\"}}}},{\"id\":\"10.0307/ir-3116\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0307/ir-3116\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0307/ir-3116\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://localhost:8080/viurr-6/handle/10613/8601\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Nijs, Peter\",\"nameType\":\"Personal\",\"givenName\":\"Peter\",\"familyName\":\"Nijs\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en\",\"title\":\"63987: doi test\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-08-01\",\"dateType\":\"Accepted\"},{\"date\":\"2019-08-01\",\"dateType\":\"Available\"},{\"date\":\"2019-08-01\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC0 1.0 Universal\"},{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/viurr-6/handle/10613/8601\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-02T10:36:41.000Z\",\"registered\":\"2019-08-02T14:38:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"clients\"}}}},{\"id\":\"10.7968/20191101.1/8\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7968/20191101.1/8\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7968/20191101.1/8\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.5072/2345lkj\",\"identifierType\":\"uri\"},{\"identifier\":\"http://localhost:8080/jspui/handle/123456789/12\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test 5\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-11-01\",\"dateType\":\"Accepted\"},{\"date\":\"2019-11-01\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/jspui/handle/123456789/12\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-01T17:01:11.000Z\",\"registered\":\"2019-11-01T17:01:49.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.becker\",\"type\":\"clients\"}}}},{\"id\":\"10.24427/fjsc-kw78\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24427/fjsc-kw78\",\"identifiers\":[],\"creators\":[{\"name\":\"DataCite\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://ror.org\",\"nameIdentifier\":\"https://ror.org/04wxnsj81\",\"nameIdentifierScheme\":\"ROR\"}]},{\"name\":\"ORCID\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://ror.org\",\"nameIdentifier\":\"https://ror.org/04fa4r544\",\"nameIdentifierScheme\":\"ROR\"}]}],\"titles\":[{\"lang\":null,\"title\":\"DataCite-ORCID Integration\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2015,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"PID Service\",\"resourceTypeGeneral\":\"Service\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"DataCite Search & Link and Auto-Update services let researchers search the DataCite Metadata Store to find your research datasets, images, and other works, and link them to an ORCID record. Researchers can also give DataCite permission to automatically add newly published works with a DataCite DOI that contains their ORCID identifier to their ORCID record.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/how-to-activate-orcid-auto-update\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-30T07:27:03.000Z\",\"registered\":\"2019-03-30T07:27:05.000Z\",\"published\":\"2015\",\"updated\":\"2020-04-23T06:32:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.services\",\"type\":\"clients\"}}}},{\"id\":\"10.0309/rwstg1k34u\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0309/rwstg1k34u\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0309/rwstg1k34u\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Martin, Ross\",\"nameType\":\"Personal\",\"givenName\":\"Ross\",\"familyName\":\"Martin\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"brand new record\"}],\"publisher\":\"Axiom Data Science\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1\",\"rightsList\":[],\"descriptions\":[{\"description\":\"brand new\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://search-stage.test.dataone.org/#view/10.0309/rwstg1k34u\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-09-10T01:06:13.000Z\",\"registered\":\"2019-09-10T01:06:14.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/a2fc4ecd990a03385b582ce811f89f1a\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/a2fc4ecd990a03385b582ce811f89f1a\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/a2fc4ecd990a03385b582ce811f89f1a\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://pasta-s.lternet.edu/package/eml/knb-lter-jrn/210278001/69\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Reichmann, Lara\",\"nameType\":\"Personal\",\"givenName\":\"Lara\",\"familyName\":\"Reichmann\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Soil Water Availability responses to manipulated precipitation at the Jornda Basin, 2007-2009,\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"A 2-year experimental manipulation of rainfall was conducted in grasslands dominated by black grama on the Jornada Experimental Range from 2007-2009. The objective was to understand the interaction of precipitation on ANPP legacies. Rain-out shelters were used to create 5 levels of precipitation: -80% and -50% reduced, ambient control, and +50% and +80% increased PPT. At each plot, both volumetric soil water content and soil water content were monitored at short (0-5 cm) and deep (30-50 cm) depths. This data set contains the date of collection, block number, plot number, precipitation treatment, depth of soil probe, voltage, and volumetric water content. This study was complete in November 2009. For further information and results, see: Throop, H., L. G. Reichmann, O. Sala, and S. Archer. 2012. Response of dominant grass and shrub species to water manipulation: an ecophysical basis for shrub invasion in a Chihuahuan desert grassland. Oecologia 169: 373-383.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://portal-s.lternet.edu/nis/mapbrowse?packageid=knb-lter-jrn.210278001.69\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-03T20:20:48.000Z\",\"registered\":\"2020-01-03T20:20:50.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T06:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}},{\"id\":\"10.24418/19y9-nf80\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24418/19y9-nf80\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24418/19y9-nf80\",\"identifierType\":\"DOI\"}],\"creators\":[{\"affiliation\":[]}],\"titles\":[{\"title\":\"Test-04-26:13:38\"}],\"publisher\":\"Galter Health Sciences Library\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost:5000/records/2\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-26T18:38:56.000Z\",\"registered\":\"2019-04-26T18:38:57.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:31:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.ghsl\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/xezp-0w83\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/xezp-0w83\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/xezp-0w83\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Acme Inc\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Acme Inc Testing Division\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Testing of prototypes in the wild west with a coyoto\"}],\"publisher\":\"Acme Inc\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"6.12\",\"rightsList\":[],\"descriptions\":[{\"description\":\"Desc\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://github.com/datacite/bracco/issues\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-24T20:31:14.000Z\",\"registered\":\"2020-02-24T20:31:48.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:02:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70126/221f-2k68\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70126/221f-2k68\",\"identifiers\":[],\"creators\":[{\"name\":\"Institute For Learning & Brain Sciences\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Module 10: Language Development: From Listening to Speaking [online module]\",\"titleType\":null}],\"publisher\":\"University of Washington\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Website\",\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://modules.ilabs.uw.edu/module/language-development-listening-speaking/\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-09T09:01:31.000Z\",\"registered\":\"2019-10-09T09:01:32.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.mary\",\"type\":\"clients\"}}}},{\"id\":\"10.24410/kaust-47n6z\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24410/kaust-47n6z\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24410/kaust-47n6z\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://hdl.handle.net/123456789/640945\",\"identifierType\":\"Handle\"}],\"creators\":[{\"name\":\"Grenz, Daryl\",\"nameType\":\"Personal\",\"givenName\":\"Daryl\",\"familyName\":\"Grenz\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test DOI Minting\"}],\"publisher\":\"KAUST Research Repository\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://kaust.test.openrepository.com/handle/123456789/640945\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-20T10:49:37.000Z\",\"registered\":\"2019-05-20T10:49:38.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:01:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"clients\"}}}},{\"id\":\"10.0307/atmire-dev-fsc17\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0307/atmire-dev-fsc17\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0307/atmire-dev-fsc17\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://localhost:8080/fsc63/handle/123456789/28\",\"identifierType\":\"uri\"},{\"identifier\":\"123456\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Test\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"TestTitle\"}],\"publisher\":\"Forest Stewardship Council International\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[{\"name\":\"International, Forest Stewardship Council\",\"nameType\":\"Personal\",\"givenName\":\"Forest Stewardship Council\",\"familyName\":\"International\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"International, Forest Stewardship Council\",\"nameType\":\"Personal\",\"givenName\":\"Forest Stewardship Council\",\"familyName\":\"International\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-10-31\",\"dateType\":\"Accepted\"},{\"date\":\"2019-10-31\",\"dateType\":\"Available\"},{\"date\":\"2018-02-03\",\"dateType\":\"Issued\"},{\"date\":\"2018-03-01\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/fsc63/handle/123456789/28\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-31T14:51:37.000Z\",\"registered\":\"2019-10-31T14:51:53.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T06:01:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"clients\"}}}},{\"id\":\"10.7968/20191101.1/6\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7968/20191101.1/6\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7968/20191101.1/6\",\"identifierType\":\"DOI\"},{\"identifier\":\"example.com/10.15448/lkjljkasldjfa.d\",\"identifierType\":\"uri\"},{\"identifier\":\"http://localhost:8080/jspui/handle/123456789/8\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test 123\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-11-01\",\"dateType\":\"Accepted\"},{\"date\":\"2019-11-01\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8080/jspui/handle/123456789/8\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-01T17:01:09.000Z\",\"registered\":\"2019-11-01T17:01:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:01:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.becker\",\"type\":\"clients\"}}}},{\"id\":\"10.24427/141e-n846\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24427/141e-n846\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24427/141e-n846\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"DataCite\",\"nameType\":\"Organizational\",\"affiliation\":[]},{\"name\":\"CrossRef\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"titles\":[{\"title\":\"DOI Citation Formatter\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2012,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Service\",\"resourceType\":\"PID Service\",\"resourceTypeGeneral\":\"Service\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The DOI Citation Formatter is a service created in collaboration with Crossref, mEDRA, ISTIC, JaLC, and KISTI. It provides a simple interface to extract metadata automatically from a DOI and build a full citation. It supports more than 5,000 different citation styles in 45 different languages, using the Citation Style Language.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://citation.crosscite.org\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-30T07:05:19.000Z\",\"registered\":\"2019-03-30T07:06:10.000Z\",\"published\":\"2012\",\"updated\":\"2020-04-23T06:01:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.services\",\"type\":\"clients\"}}}},{\"id\":\"10.0309/rwstg1k34x\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0309/rwstg1k34x\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0309/rwstg1k34x\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Branch, Trevor A\",\"nameType\":\"Personal\",\"givenName\":\"Trevor A\",\"familyName\":\"Branch\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Trochta, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Trochta\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Testing, June 25 2019\"}],\"publisher\":\"Axiom Data Science\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1\",\"rightsList\":[],\"descriptions\":[{\"description\":\"These data are part of the Herring Program of the Exxon Valdez Oil Spill Trustee Council, project numbers 12120111-Q, 14120111-Q, and 16120111-Q, which is a multi-faceted study to determine why herring populations in Prince William Sound remain depressed since the early 1990s. As part of this effort, this dataset includes a global database of herring time series which was developed to conduct a meta-analysis investigating population collapse and recovery patterns among herring populations. Abundance and recruitment time series of various Pacific and Atlantic herring populations from 1974 to 2011 are collated into a comma-separated value (CSV) file. Catch, spawning biomass, and recruitment time series information for these various populations are also included in the file.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://search-stage.test.dataone.org/#view/10.0309/rwstg1k34x\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-07T22:35:25.000Z\",\"registered\":\"2019-10-07T22:35:27.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T06:01:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/2d21ddef4bf92e5e7edd88f99d152f0f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/2d21ddef4bf92e5e7edd88f99d152f0f\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/2d21ddef4bf92e5e7edd88f99d152f0f\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://pasta-s.lternet.edu/package/eml/knb-lter-jrn/210386004/22\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Virginia, Ross\",\"nameType\":\"Personal\",\"givenName\":\"Ross\",\"familyName\":\"Virginia\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Whitford, Watlter\",\"nameType\":\"Personal\",\"givenName\":\"Watlter\",\"familyName\":\"Whitford\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Number of Nodulating Rhizobia in Mesquite Dune Sites in the Jornada Basin, 1988 and 1989\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"This package contains data from a study that measured concentrations of mesquite-nodulating rhizobia nodules on irrigated and non-irrigated dune plots at the Jornada Experimental Range from 1988-1989. Five mesquite dunes were irrigated by pumping water from a storage tank located 200 m from the site to the apex of each dune. Irrigation began in March with approximately 2.5 cm applied 2-3 times/week for 6 weeks to initially wet the dry soil. Thereafter high water availability was maintained by weekly irrigation. Five non-irrigated dunes served as control. Five to 6 replicate soil samples were collected with hand augers under each mesquite shrub (Prosopis glandulosa) to three depths, 0-50 and 50-100, and 100-150cm. Concentrations of mesquite-nodulating rhizobia in field-moist soil samples were estimated using the plant-infection, most probable number (MPN) technique. Data consists of the date of collection, treatment, mesquite dune number, depth, replicate, and number of nodules. This study is complete.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://portal-s.lternet.edu/nis/mapbrowse?packageid=knb-lter-jrn.210386004.22\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-07T22:06:37.000Z\",\"registered\":\"2020-02-07T22:06:39.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":3744,\"totalPages\":150,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":2669},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":1058},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":17}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2313},{\"id\":\"text\",\"title\":\"Text\",\"count\":174},{\"id\":\"software\",\"title\":\"Software\",\"count\":152},{\"id\":\"image\",\"title\":\"Image\",\"count\":32},{\"id\":\"other\",\"title\":\"Other\",\"count\":29},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":27},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":14},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":10},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":9},{\"id\":\"service\",\"title\":\"Service\",\"count\":4},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":730},{\"id\":\"2019\",\"title\":\"2019\",\"count\":2019},{\"id\":\"2018\",\"title\":\"2018\",\"count\":969},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"published\":[{\"id\":\"2222\",\"title\":\"2222\",\"count\":2},{\"id\":\"2020\",\"title\":\"2020\",\"count\":636},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1840},{\"id\":\"2018\",\"title\":\"2018\",\"count\":122},{\"id\":\"2017\",\"title\":\"2017\",\"count\":72},{\"id\":\"2016\",\"title\":\"2016\",\"count\":23},{\"id\":\"2015\",\"title\":\"2015\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":16},{\"id\":\"2013\",\"title\":\"2013\",\"count\":5},{\"id\":\"2012\",\"title\":\"2012\",\"count\":4},{\"id\":\"2011\",\"title\":\"2011\",\"count\":26},{\"id\":\"2010\",\"title\":\"2010\",\"count\":2},{\"id\":\"2009\",\"title\":\"2009\",\"count\":2},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1},{\"id\":\"2002\",\"title\":\"2002\",\"count\":7},{\"id\":\"2001\",\"title\":\"2001\",\"count\":1},{\"id\":\"2000\",\"title\":\"2000\",\"count\":4},{\"id\":\"1998\",\"title\":\"1998\",\"count\":11},{\"id\":\"1996\",\"title\":\"1996\",\"count\":1},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3},{\"id\":\"1988\",\"title\":\"1988\",\"count\":3},{\"id\":\"1920\",\"title\":\"1920\",\"count\":1},{\"id\":\"1918\",\"title\":\"1918\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":630},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1746},{\"id\":\"2018\",\"title\":\"2018\",\"count\":263},{\"id\":\"2017\",\"title\":\"2017\",\"count\":9}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":3744}],\"clients\":[{\"id\":\"datacite.edi\",\"title\":\"Environmental Data Initiative\",\"count\":1926},{\"id\":\"datacite.nasa\",\"title\":\"NASA\",\"count\":667},{\"id\":\"datacite.ghsl\",\"title\":\"Galter Health Sciences Library, Northwestern University\",\"count\":268},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":196},{\"id\":\"datacite.rph\",\"title\":\"DataCite Test RPH\",\"count\":188},{\"id\":\"datacite.bl\",\"title\":\"Brain-Life\",\"count\":139},{\"id\":\"datacite.dce\",\"title\":\"Data Curation Experts, LLC\",\"count\":133},{\"id\":\"datacite.mary\",\"title\":\"Mary test client\",\"count\":84},{\"id\":\"datacite.hbp\",\"title\":\"Human Brain Project\",\"count\":61},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":16},{\"id\":\"datacite.atmire\",\"title\":\"Atmire, Inc.\",\"count\":14},{\"id\":\"datacite.kaust\",\"title\":\"King Abdullah University of Science and Technology\",\"count\":13},{\"id\":\"datacite.becker\",\"title\":\"Pascal Becker's test account\",\"count\":10},{\"id\":\"datacite.transfer\",\"title\":\"Transfer Test\",\"count\":8},{\"id\":\"datacite.axiom\",\"title\":\"Axiom Data Science\",\"count\":4}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":17},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":5},{\"id\":\"ror.org/005cgd502\",\"title\":\"Digital Authentication Technologies (United States)\",\"count\":1},{\"id\":\"ror.org/02e2c7k09\",\"title\":\"Delft University of Technology\",\"count\":1},{\"id\":\"ror.org/036jqmy94\",\"title\":\"University of Iowa\",\"count\":1},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":1},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0311\",\"title\":\"10.0311\",\"count\":1926},{\"id\":\"10.24411\",\"title\":\"10.24411\",\"count\":667},{\"id\":\"10.24418\",\"title\":\"10.24418\",\"count\":269},{\"id\":\"10.70048\",\"title\":\"10.70048\",\"count\":189},{\"id\":\"10.0322\",\"title\":\"10.0322\",\"count\":139},{\"id\":\"10.24354\",\"title\":\"10.24354\",\"count\":133},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":117},{\"id\":\"10.70126\",\"title\":\"10.70126\",\"count\":83},{\"id\":\"10.24409\",\"title\":\"10.24409\",\"count\":61},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":32},{\"id\":\"10.70002\",\"title\":\"10.70002\",\"count\":28},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":17},{\"id\":\"10.24410\",\"title\":\"10.24410\",\"count\":13},{\"id\":\"10.0307\",\"title\":\"10.0307\",\"count\":11},{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":11}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1076},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":105},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":1}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":3050},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":200},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":157},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":33},{\"id\":\"test\",\"title\":\"Test\",\"count\":21}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":436},{\"id\":\"404\",\"title\":\"404\",\"count\":103},{\"id\":\"500\",\"title\":\"500\",\"count\":20},{\"id\":\"401\",\"title\":\"401\",\"count\":1}],\"linksChecked\":104,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":1745},{\"id\":\"1\",\"title\":\"1\",\"count\":37}],\"linkChecksSchemaOrgId\":35,\"linkChecksDcIdentifier\":3,\"linkChecksCitationDoi\":2,\"subjects\":[{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":35},{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":24},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":24},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":24},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":24},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":24},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":24},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":24},{\"id\":\"analysis\",\"title\":\"Analysis\",\"count\":14},{\"id\":\"test\",\"title\":\"Test\",\"count\":14},{\"id\":\"anatomy-preprocessing\",\"title\":\"Anatomy Preprocessing\",\"count\":11},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":10},{\"id\":\"metadata\",\"title\":\"Metadata\",\"count\":10},{\"id\":\"quality-check\",\"title\":\"Quality Check\",\"count\":8},{\"id\":\"datacite\",\"title\":\"Datacite\",\"count\":7}],\"citations\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":7}],\"views\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":181}],\"downloads\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":130}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=datacite&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&consortium-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=datacite&query=®istered=&resource-type-id=\"}}" + "size": 47537, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0322/bldev.app.23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0322/bldev.app.23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0322/bldev.app.23\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Split Shell\"}],\"publisher\":\"brainlife.io\",\"container\":{},\"publicationYear\":2017,\"subjects\":[{\"subject\":\"diffusion-preprocessing\"}],\"contributors\":[{\"name\":\"Kitchell, Lindsey\",\"nameType\":\"Personal\",\"givenName\":\"Lindsey\",\"familyName\":\"Kitchell\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Hayashi, Soichi\",\"nameType\":\"Personal\",\"givenName\":\"Soichi\",\"familyName\":\"Hayashi\",\"affiliation\":[],\"contributorType\":\"Other\"},{\"name\":\"Pestilli, Franco\",\"nameType\":\"Personal\",\"givenName\":\"Franco\",\"familyName\":\"Pestilli\",\"affiliation\":[],\"contributorType\":\"Other\"}],\"dates\":[{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Split multi-shell diffusion data into a single chosen b value shell while rounding bvals\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost.brainlife.io/app/592dec760188fd1eecf7b4ef\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-05T02:31:47.000Z\",\"registered\":\"2018-12-05T02:31:50.000Z\",\"published\":\"2017\",\"updated\":\"2020-05-04T10:31:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.bl\",\"type\":\"clients\"}}}},{\"id\":\"10.24354/kw52j8580\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24354/kw52j8580\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24354/kw52j8580\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Test\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"single pdf\"}],\"publisher\":\":unav\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"THES\",\"bibtex\":\"phdthesis\",\"citeproc\":\"thesis\",\"schemaOrg\":\"Thesis\",\"resourceType\":\"Dissertation\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"4.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://scholararchive.ohsu.edu/concern/etds/kw52j8580\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-05T22:55:24.000Z\",\"registered\":\"2019-11-05T22:55:25.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.dce\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/t0v4-zj71\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/t0v4-zj71\",\"identifiers\":[],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-07T13:07:50.000Z\",\"registered\":\"2019-06-07T13:08:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.0311/fk2/927a80d5a03675c0a6b68d9e3f5c36c9\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0311/fk2/927a80d5a03675c0a6b68d9e3f5c36c9\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0311/fk2/927a80d5a03675c0a6b68d9e3f5c36c9\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://pasta-s.lternet.edu/package/eml/knb-lter-jrn/210122001/98\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Gillette, Dale\",\"nameType\":\"Personal\",\"givenName\":\"Dale\",\"familyName\":\"Gillette\",\"affiliation\":[]},{\"name\":\"Okin, Greg\",\"nameType\":\"Personal\",\"givenName\":\"Greg\",\"familyName\":\"Okin\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Crust Abrasion at Scrape Site on the Jornada Basin, 1995 to 2019\"}],\"publisher\":\"Environmental Data Initiative\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"The project was designed to test the hypothesis that the abrasion of a\\n surface crust is proportional to the vertical flux of kinetic energy\\n delivered by saltating sand grains.This flux energy is related to the\\n mass flux of saltating grains. The site was selected since it had a\\n flat crust that was not greatly affected by atmospheric precipitation\\n or freeze/thaw and moistening/drying cycles. The objective of the\\n project was to measure the kinetic energy flux during saltation, the\\n mass flux of saltation particles, and to relate those fluxes to the\\n abrasion of the crust. Data collection is ongoing since 1995.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://portal-s.lternet.edu/nis/mapbrowse?packageid=knb-lter-jrn.210122001.98\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-02T18:01:26.000Z\",\"registered\":\"2019-07-02T18:01:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.edi\",\"type\":\"clients\"}}}},{\"id\":\"10.70048/mutaamba\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70048/mutaamba\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70048/mutaamba\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"CXC-DS\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb117337761\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info1008032-6\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 1781 4754\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn82072949\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czko2011425784\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr081072066\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org127863534\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org127863534\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]}],\"titles\":[{\"title\":\"Chandra X-ray Observatory ObsId 1\"}],\"publisher\":\"Chandra X-ray Center/SAO\",\"container\":{},\"publicationYear\":2000,\"subjects\":[{\"subject\":\"High Energy Astrophysics Data/X-ray Data\"},{\"subject\":\"X-ray astronomy\",\"schemeUri\":\"htp://id.loc.gov\",\"subjectScheme\":\"LCCN\"}],\"contributors\":[{\"name\":\"NASA\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"RightsHolder\",\"nameIdentifiers\":[{\"schemeUri\":\"http://catalogo.bne.es\",\"nameIdentifier\":\"http://catalogo.bne.esXX148293\",\"nameIdentifierScheme\":\"BNE\"},{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb11868484t\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info2294-9\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 1456 7559\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn78087581\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"https://kopkatalogs.lv\",\"nameIdentifier\":\"https://kopkatalogs.lv000175514\",\"nameIdentifierScheme\":\"LNB\"},{\"schemeUri\":\"http://musicbrainz.org\",\"nameIdentifier\":\"http://musicbrainz.org7e779bc3-c034-468b-9cc2-b3d99ad50cfd\",\"nameIdentifierScheme\":\"MusicBrainz\"},{\"schemeUri\":\"http://musicbrainz.org\",\"nameIdentifier\":\"http://musicbrainz.org811ff445-cd10-48c5-a3c3-c8ede74a9189\",\"nameIdentifierScheme\":\"MusicBrainz\"},{\"schemeUri\":\"http://ndl.go.jp\",\"nameIdentifier\":\"http://ndl.go.jp00276299\",\"nameIdentifierScheme\":\"NDL\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czkn20010711417\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"http://aleph.nli.org.il\",\"nameIdentifier\":\"http://aleph.nli.org.il000134189\",\"nameIdentifierScheme\":\"NLI\"},{\"schemeUri\":\"https://www.nsk.hr\",\"nameIdentifier\":\"https://www.nsk.hr000041310\",\"nameIdentifierScheme\":\"NSK\"},{\"schemeUri\":\"https://pic.nypl.org\",\"nameIdentifier\":\"https://pic.nypl.org328444\",\"nameIdentifierScheme\":\"PIC\"},{\"schemeUri\":\"https://libris.kb.se\",\"nameIdentifier\":\"https://libris.kb.se123881\",\"nameIdentifierScheme\":\"SELIBR\"},{\"schemeUri\":\"https://socialarchive.iath.virginia.edu\",\"nameIdentifier\":\"https://socialarchive.iath.virginia.eduw60w92qf\",\"nameIdentifierScheme\":\"SNAC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr027773299\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://collections.tepapa.govt.nz\",\"nameIdentifier\":\"https://collections.tepapa.govt.nz34284\",\"nameIdentifierScheme\":\"TePapa\"},{\"schemeUri\":\"http://www.getty.edu/research/tools/vocabularies/ulan\",\"nameIdentifier\":\"http://www.getty.edu/research/tools/vocabularies/ulan500265440\",\"nameIdentifierScheme\":\"ULAN\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org146202023\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org146202023\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]},{\"name\":\"Smithsonian Astrophysical Observatory\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb117337761\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info1008032-6\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 1781 4754\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn82072949\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czko2011425784\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr081072066\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org127863534\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org127863534\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]},{\"name\":\"Chandra Data Archive\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"Smithsonian Institution\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"RegistrationAgency\",\"nameIdentifiers\":[{\"schemeUri\":\"http://catalogo.bne.es\",\"nameIdentifier\":\"http://catalogo.bne.esXX145247\",\"nameIdentifierScheme\":\"BNE\"},{\"schemeUri\":\"https://data.bnf.fr\",\"nameIdentifier\":\"https://data.bnf.frcb118671884\",\"nameIdentifierScheme\":\"BNF\"},{\"schemeUri\":\"https://d-nb.info\",\"nameIdentifier\":\"https://d-nb.info38076-3\",\"nameIdentifierScheme\":\"GND\"},{\"schemeUri\":\"http://isni.org\",\"nameIdentifier\":\"http://isni.org0000 0001 2185 5671\",\"nameIdentifierScheme\":\"ISNI\"},{\"schemeUri\":\"htp://id.loc.gov\",\"nameIdentifier\":\"htp://id.loc.govn79053968\",\"nameIdentifierScheme\":\"LCCN\"},{\"schemeUri\":\"http://musicbrainz.org\",\"nameIdentifier\":\"http://musicbrainz.org08f03b7d-97ae-496a-84cd-158ca6bbaca6\",\"nameIdentifierScheme\":\"MusicBrainz\"},{\"schemeUri\":\"https://aleph.nkp.cz\",\"nameIdentifier\":\"https://aleph.nkp.czko2004230768\",\"nameIdentifierScheme\":\"NKC\"},{\"schemeUri\":\"https://librariesaustralia.nla.gov.au\",\"nameIdentifier\":\"https://librariesaustralia.nla.gov.au35508508\",\"nameIdentifierScheme\":\"NLA\"},{\"schemeUri\":\"https://socialarchive.iath.virginia.edu\",\"nameIdentifier\":\"https://socialarchive.iath.virginia.eduw69h69v0\",\"nameIdentifierScheme\":\"SNAC\"},{\"schemeUri\":\"https://www.idref.fr\",\"nameIdentifier\":\"https://www.idref.fr026421577\",\"nameIdentifierScheme\":\"SUDOC\"},{\"schemeUri\":\"https://collections.tepapa.govt.nz\",\"nameIdentifier\":\"https://collections.tepapa.govt.nz39438\",\"nameIdentifierScheme\":\"TePapa\"},{\"schemeUri\":\"https://viaf.org\",\"nameIdentifier\":\"https://viaf.org159805885\",\"nameIdentifierScheme\":\"VIAF\"},{\"schemeUri\":\"https://www.worldcat.org\",\"nameIdentifier\":\"https://www.worldcat.org159805885\",\"nameIdentifierScheme\":\"WorldCatIdentities\"}]},{\"name\":\"Chandra Data Archive\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Distributor\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"1999-11-25T07:59:41\",\"dateType\":\"Collected\"},{\"date\":\"1999-12-10T00:00:00\",\"dateType\":\"Created\"},{\"date\":\"2000-12-14T18:00:00\",\"dateType\":\"Available\"},{\"date\":\"2000\",\"dateType\":\"Issued\"}],\"language\":\"EN-US\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Astronomical Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[\"ks 19.070619325143998\",\"26292663 bytes\"],\"formats\":[\"FITS\"],\"version\":\"6\",\"rightsList\":[{\"rights\":\"Public Data\"}],\"descriptions\":[{\"description\":\"ACIS OBSERVATION OF JUPITER AND THE GALILEAN SATELLITES\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPoint\":{\"pointLatitude\":\"8.72658\",\"pointLongitude\":\"24.7263\"}},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.54\",\"pointLongitude\":\"24.372\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59493\",\"pointLongitude\":\"24.5013\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59493\",\"pointLongitude\":\"24.5074\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59491\",\"pointLongitude\":\"24.5075\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46714\",\"pointLongitude\":\"24.5633\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46131\",\"pointLongitude\":\"24.5633\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.40636\",\"pointLongitude\":\"24.4339\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.40636\",\"pointLongitude\":\"24.4278\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.40639\",\"pointLongitude\":\"24.4278\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53417\",\"pointLongitude\":\"24.372\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.54\",\"pointLongitude\":\"24.372\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.72595\",\"pointLongitude\":\"24.4501\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59819\",\"pointLongitude\":\"24.506\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59235\",\"pointLongitude\":\"24.506\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53676\",\"pointLongitude\":\"24.3769\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53676\",\"pointLongitude\":\"24.3708\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.53679\",\"pointLongitude\":\"24.3708\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.66449\",\"pointLongitude\":\"24.3148\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.66453\",\"pointLongitude\":\"24.3148\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.67036\",\"pointLongitude\":\"24.3148\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72595\",\"pointLongitude\":\"24.4439\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72595\",\"pointLongitude\":\"24.4501\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.46265\",\"pointLongitude\":\"24.5604\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46267\",\"pointLongitude\":\"24.5603\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59045\",\"pointLongitude\":\"24.5045\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59628\",\"pointLongitude\":\"24.5045\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65179\",\"pointLongitude\":\"24.6336\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65179\",\"pointLongitude\":\"24.6397\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65178\",\"pointLongitude\":\"24.6397\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.52398\",\"pointLongitude\":\"24.6955\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.51815\",\"pointLongitude\":\"24.6955\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46265\",\"pointLongitude\":\"24.5665\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.46265\",\"pointLongitude\":\"24.5604\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.72734\",\"pointLongitude\":\"24.4472\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.78224\",\"pointLongitude\":\"24.5766\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.78224\",\"pointLongitude\":\"24.5828\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.65445\",\"pointLongitude\":\"24.6386\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.64861\",\"pointLongitude\":\"24.6386\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59374\",\"pointLongitude\":\"24.5093\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59374\",\"pointLongitude\":\"24.5031\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.59376\",\"pointLongitude\":\"24.5031\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72147\",\"pointLongitude\":\"24.4472\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72731\",\"pointLongitude\":\"24.4472\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.72734\",\"pointLongitude\":\"24.4472\"}}]},{\"geoLocationPolygon\":[{\"polygonPoint\":{\"pointLatitude\":\"8.77712\",\"pointLongitude\":\"24.6299\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.77713\",\"pointLongitude\":\"24.6299\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.83243\",\"pointLongitude\":\"24.7593\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.83243\",\"pointLongitude\":\"24.7654\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.83242\",\"pointLongitude\":\"24.7654\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.70451\",\"pointLongitude\":\"24.8214\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.7045\",\"pointLongitude\":\"24.8214\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.69867\",\"pointLongitude\":\"24.8214\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.64339\",\"pointLongitude\":\"24.692\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.64339\",\"pointLongitude\":\"24.6858\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.6434\",\"pointLongitude\":\"24.6858\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.77129\",\"pointLongitude\":\"24.6299\"}},{\"polygonPoint\":{\"pointLatitude\":\"8.77712\",\"pointLongitude\":\"24.6299\"}}]}],\"fundingReferences\":[{\"awardTitle\":\"Chandra X-ray Center\",\"funderName\":\"NASA\",\"awardNumber\":\"NAS-8-03060\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"https://doi.org/10.70048/mutaamba\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-20T09:22:39.000Z\",\"registered\":\"2019-12-20T09:22:40.000Z\",\"published\":\"2000\",\"updated\":\"2020-05-04T10:30:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.rph\",\"type\":\"clients\"}}}},{\"id\":\"10.70126/vnhf-ht55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70126/vnhf-ht55\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70126/vnhf-ht55\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Katavouta, Anna\",\"nameType\":\"Personal\",\"givenName\":\"Anna\",\"familyName\":\"Katavouta\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Williams, Ric\",\"nameType\":\"Personal\",\"givenName\":\"Ric\",\"familyName\":\"Williams\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Goodwin, Philip A\",\"nameType\":\"Personal\",\"givenName\":\"Philip A\",\"familyName\":\"Goodwin\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Roussenov, Vassil\",\"nameType\":\"Personal\",\"givenName\":\"Vassil\",\"familyName\":\"Roussenov\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Box model for the global surface warming response to carbon emissions: solving for heat and carbon exchange between the atmosphere and the ocean over 1000 years since the pre-industrial era\"}],\"publisher\":\"British Oceanographic Data Centre, National Oceanography Centre, NERC, UK\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"climatologyMeteorologyAtmosphere\",\"schemeUri\":\"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml\",\"subjectScheme\":\"MD_TopicCategoryCode\"},{\"subject\":\"oceans\",\"schemeUri\":\"http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml\",\"subjectScheme\":\"MD_TopicCategoryCode\"}],\"contributors\":[],\"dates\":[{\"date\":\"1861-01-01/2861-01-01\",\"dateType\":\"Collected\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"Binary\",\"Delimited\"],\"version\":\"1\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"World\"}],\"fundingReferences\":[],\"url\":\"https://exmaple.org\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-09-12T10:32:49.000Z\",\"registered\":\"2019-09-12T10:33:03.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:02:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.mary\",\"type\":\"clients\"}}}},{\"id\":\"10.24410/kaust-0wgzf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24410/kaust-0wgzf\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24410/kaust-0wgzf\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://hdl.handle.net/123456789/640945\",\"identifierType\":\"Handle\"}],\"creators\":[{\"name\":\"Grenz, Daryl\",\"nameType\":\"Personal\",\"givenName\":\"Daryl\",\"familyName\":\"Grenz\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test DOI Minting\"}],\"publisher\":\"KAUST Research Repository\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://kaust.test.openrepository.comhandle/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-20T10:08:32.000Z\",\"registered\":\"2019-05-20T10:08:34.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:02:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-04T10:02:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":3823,\"totalPages\":153,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":2710},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":1096},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":17}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2352},{\"id\":\"text\",\"title\":\"Text\",\"count\":179},{\"id\":\"software\",\"title\":\"Software\",\"count\":157},{\"id\":\"image\",\"title\":\"Image\",\"count\":32},{\"id\":\"other\",\"title\":\"Other\",\"count\":29},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":27},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":14},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":10},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":9},{\"id\":\"service\",\"title\":\"Service\",\"count\":4},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":806},{\"id\":\"2019\",\"title\":\"2019\",\"count\":2022},{\"id\":\"2018\",\"title\":\"2018\",\"count\":969},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"published\":[{\"id\":\"2222\",\"title\":\"2222\",\"count\":2},{\"id\":\"2020\",\"title\":\"2020\",\"count\":678},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1844},{\"id\":\"2018\",\"title\":\"2018\",\"count\":122},{\"id\":\"2017\",\"title\":\"2017\",\"count\":72},{\"id\":\"2016\",\"title\":\"2016\",\"count\":23},{\"id\":\"2015\",\"title\":\"2015\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":17},{\"id\":\"2013\",\"title\":\"2013\",\"count\":5},{\"id\":\"2012\",\"title\":\"2012\",\"count\":4},{\"id\":\"2011\",\"title\":\"2011\",\"count\":26},{\"id\":\"2010\",\"title\":\"2010\",\"count\":2},{\"id\":\"2009\",\"title\":\"2009\",\"count\":2},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1},{\"id\":\"2002\",\"title\":\"2002\",\"count\":7},{\"id\":\"2001\",\"title\":\"2001\",\"count\":1},{\"id\":\"2000\",\"title\":\"2000\",\"count\":4},{\"id\":\"1998\",\"title\":\"1998\",\"count\":11},{\"id\":\"1996\",\"title\":\"1996\",\"count\":1},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3},{\"id\":\"1988\",\"title\":\"1988\",\"count\":3},{\"id\":\"1920\",\"title\":\"1920\",\"count\":1},{\"id\":\"1918\",\"title\":\"1918\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":670},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1749},{\"id\":\"2018\",\"title\":\"2018\",\"count\":263},{\"id\":\"2017\",\"title\":\"2017\",\"count\":9}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":3823}],\"clients\":[{\"id\":\"datacite.edi\",\"title\":\"Environmental Data Initiative\",\"count\":1964},{\"id\":\"datacite.nasa\",\"title\":\"NASA\",\"count\":667},{\"id\":\"datacite.ghsl\",\"title\":\"Galter Health Sciences Library, Northwestern University\",\"count\":269},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":196},{\"id\":\"datacite.rph\",\"title\":\"DataCite Test RPH\",\"count\":191},{\"id\":\"datacite.bl\",\"title\":\"Brain-Life\",\"count\":143},{\"id\":\"datacite.dce\",\"title\":\"Data Curation Experts, LLC\",\"count\":133},{\"id\":\"datacite.mary\",\"title\":\"Mary test client\",\"count\":87},{\"id\":\"datacite.hbp\",\"title\":\"Human Brain Project\",\"count\":61},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":46}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":17},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":5},{\"id\":\"ror.org/005cgd502\",\"title\":\"Digital Authentication Technologies (United States)\",\"count\":1},{\"id\":\"ror.org/02e2c7k09\",\"title\":\"Delft University of Technology\",\"count\":1},{\"id\":\"ror.org/036jqmy94\",\"title\":\"University of Iowa\",\"count\":1},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":1},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0311\",\"title\":\"10.0311\",\"count\":1964},{\"id\":\"10.24411\",\"title\":\"10.24411\",\"count\":667},{\"id\":\"10.24418\",\"title\":\"10.24418\",\"count\":270},{\"id\":\"10.70048\",\"title\":\"10.70048\",\"count\":192},{\"id\":\"10.0322\",\"title\":\"10.0322\",\"count\":143},{\"id\":\"10.24354\",\"title\":\"10.24354\",\"count\":133},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":117},{\"id\":\"10.70126\",\"title\":\"10.70126\",\"count\":86},{\"id\":\"10.24409\",\"title\":\"10.24409\",\"count\":61},{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":39}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1477},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":105},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":435},{\"id\":\"404\",\"title\":\"404\",\"count\":103},{\"id\":\"500\",\"title\":\"500\",\"count\":20},{\"id\":\"401\",\"title\":\"401\",\"count\":1}],\"citations\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":7}],\"views\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":181}],\"downloads\":[{\"id\":\"2016\",\"title\":\"2016\",\"count\":130}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=datacite&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&consortium-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=datacite&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -206,8 +206,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:00.515Z", - "time": 297, + "startedDateTime": "2020-05-04T16:41:23.529Z", + "time": 243, "timings": { "blocked": -1, "connect": -1, @@ -215,66 +215,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 297 - } - }, - { - "_id": "fe380e0d2136e749acc6391f8c15e720", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 727, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.globus" - }, - "response": { - "bodySize": 688, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 688, - "text": "{\"data\":{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 211, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 211 + "wait": 243 } }, { @@ -324,8 +265,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 235, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 223, "timings": { "blocked": -1, "connect": -1, @@ -333,125 +274,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 235 - } - }, - { - "_id": "f333333e0c11a145bb50c1470abf6178", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 729, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.transfer" - }, - "response": { - "bodySize": 660, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 660, - "text": "{\"data\":{\"id\":\"datacite.transfer\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Transfer Test\",\"symbol\":\"DATACITE.TRANSFER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-22T10:48:20.000Z\",\"updated\":\"2019-07-30T06:59:15.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},\"meta\":{\"doiCount\":8,\"prefixCount\":0}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 248, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 248 - } - }, - { - "_id": "242205a81780785e2da39cb924aabdb3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 725, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.ghsl" - }, - "response": { - "bodySize": 743, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 743, - "text": "{\"data\":{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":268,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 262, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 262 + "wait": 223 } }, { @@ -482,7 +305,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 713, - "text": "{\"data\":{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1926,\"prefixCount\":1}}" + "text": "{\"data\":{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1964,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -501,8 +324,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 311, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 235, "timings": { "blocked": -1, "connect": -1, @@ -510,7 +333,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 311 + "wait": 235 } }, { @@ -541,7 +364,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 683, - "text": "{\"data\":{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":139,\"prefixCount\":1}}" + "text": "{\"data\":{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":143,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -560,8 +383,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 327, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 250, "timings": { "blocked": -1, "connect": -1, @@ -569,11 +392,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 327 + "wait": 250 } }, { - "_id": "77b265592e9c515fef89646f76ba207b", + "_id": "65399951cfbfa8d58d99fd6a4643609e", "_order": 0, "cache": {}, "request": { @@ -589,18 +412,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 725, + "headersSize": 724, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.mary" + "url": "https://api.test.datacite.org/repositories/datacite.dce" }, "response": { - "bodySize": 692, + "bodySize": 710, "content": { "mimeType": "application/json; charset=utf-8", - "size": 692, - "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-02-25T17:07:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":84,\"prefixCount\":1}}" + "size": 710, + "text": "{\"data\":{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":133,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -619,8 +442,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 346, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 257, "timings": { "blocked": -1, "connect": -1, @@ -628,7 +451,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 346 + "wait": 257 } }, { @@ -659,7 +482,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 731, - "text": "{\"data\":{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":188,\"prefixCount\":1}}" + "text": "{\"data\":{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":191,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -678,185 +501,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 356, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 356 - } - }, - { - "_id": "dc7f6220f024e559957cfd8582b75a0f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 727, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.becker" - }, - "response": { - "bodySize": 711, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 711, - "text": "{\"data\":{\"id\":\"datacite.becker\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Pascal Becker's test account\",\"symbol\":\"DATACITE.BECKER\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"pascal@the-library-code.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-01T11:09:54.000Z\",\"updated\":\"2019-11-01T11:10:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7968\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":10,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 440, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 440 - } - }, - { - "_id": "060341b9dea1e43fea249e97d72ba142", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 729, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.services" - }, - "response": { - "bodySize": 734, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 734, - "text": "{\"data\":{\"id\":\"datacite.services\",\"type\":\"repositories\",\"attributes\":{\"name\":\"PID Services Registry\",\"symbol\":\"DATACITE.SERVICES\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"info@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"https://test.pidservices.org\",\"salesforceId\":null,\"created\":\"2019-03-30T06:52:24.000Z\",\"updated\":\"2019-03-30T06:52:24.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24427\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 446, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 446 - } - }, - { - "_id": "c43438dca0b1ee1788b44f66314b9962", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 727, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.atmire" - }, - "response": { - "bodySize": 723, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 723, - "text": "{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":14,\"prefixCount\":2}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 510, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 262, "timings": { "blocked": -1, "connect": -1, @@ -864,11 +510,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 510 + "wait": 262 } }, { - "_id": "361573f2c757774b6c6ab7b427eae248", + "_id": "151261db548068ab9a31adb5cc7365bd", "_order": 0, "cache": {}, "request": { @@ -888,14 +534,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.axiom" + "url": "https://api.test.datacite.org/repositories/datacite.kaust" }, "response": { - "bodySize": 714, + "bodySize": 741, "content": { "mimeType": "application/json; charset=utf-8", - "size": 714, - "text": "{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" + "size": 741, + "text": "{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":13,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -914,8 +560,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 523, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 331, "timings": { "blocked": -1, "connect": -1, @@ -923,7 +569,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 523 + "wait": 331 } }, { @@ -954,7 +600,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 742, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -973,8 +619,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 532, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 433, "timings": { "blocked": -1, "connect": -1, @@ -982,11 +628,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 532 + "wait": 433 } }, { - "_id": "151261db548068ab9a31adb5cc7365bd", + "_id": "77b265592e9c515fef89646f76ba207b", "_order": 0, "cache": {}, "request": { @@ -1002,18 +648,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 726, + "headersSize": 725, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.kaust" + "url": "https://api.test.datacite.org/repositories/datacite.mary" }, "response": { - "bodySize": 741, + "bodySize": 690, "content": { "mimeType": "application/json; charset=utf-8", - "size": 741, - "text": "{\"data\":{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":13,\"prefixCount\":1}}" + "size": 690, + "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-04-29T09:51:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":87,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1032,8 +678,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:01.699Z", - "time": 542, + "startedDateTime": "2020-05-04T16:41:24.581Z", + "time": 450, "timings": { "blocked": -1, "connect": -1, @@ -1041,7 +687,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 542 + "wait": 450 } } ], diff --git a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-info_1747019132/recording.har b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-info_1747019132/recording.har index 6188d235a..c6cd5fc00 100644 --- a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-info_1747019132/recording.har +++ b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-info_1747019132/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | provider/visiting provider DataCite info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:58.376Z", - "time": 137, + "startedDateTime": "2020-05-04T16:41:20.726Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 137 + "wait": 90 } }, { @@ -103,7 +103,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1256, - "text": "{\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":3},{\"id\":\"2015\",\"title\":\"2015\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2017\",\"title\":\"2017\",\"count\":32},{\"id\":\"2018\",\"title\":\"2018\",\"count\":53},{\"id\":\"2019\",\"title\":\"2019\",\"count\":59},{\"id\":\"2020\",\"title\":\"2020\",\"count\":61}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":730},{\"id\":\"2019\",\"title\":\"2019\",\"count\":2019},{\"id\":\"2018\",\"title\":\"2018\",\"count\":969},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2313},{\"id\":\"text\",\"title\":\"Text\",\"count\":174},{\"id\":\"software\",\"title\":\"Software\",\"count\":152},{\"id\":\"image\",\"title\":\"Image\",\"count\":32},{\"id\":\"other\",\"title\":\"Other\",\"count\":29},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":27},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":14},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":10},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":9},{\"id\":\"service\",\"title\":\"Service\",\"count\":4},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}]}" + "text": "{\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":3},{\"id\":\"2015\",\"title\":\"2015\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2017\",\"title\":\"2017\",\"count\":32},{\"id\":\"2018\",\"title\":\"2018\",\"count\":53},{\"id\":\"2019\",\"title\":\"2019\",\"count\":59},{\"id\":\"2020\",\"title\":\"2020\",\"count\":62}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":806},{\"id\":\"2019\",\"title\":\"2019\",\"count\":2022},{\"id\":\"2018\",\"title\":\"2018\",\"count\":969},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2352},{\"id\":\"text\",\"title\":\"Text\",\"count\":179},{\"id\":\"software\",\"title\":\"Software\",\"count\":157},{\"id\":\"image\",\"title\":\"Image\",\"count\":32},{\"id\":\"other\",\"title\":\"Other\",\"count\":29},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":27},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":14},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":10},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":9},{\"id\":\"service\",\"title\":\"Service\",\"count\":4},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:58.574Z", - "time": 191, + "startedDateTime": "2020-05-04T16:41:20.971Z", + "time": 231, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 191 + "wait": 231 } } ], diff --git a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-repositories_601366784/recording.har b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-repositories_601366784/recording.har index 301eb3d26..ad1da0964 100644 --- a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-repositories_601366784/recording.har +++ b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite-repositories_601366784/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | provider/visiting provider DataCite repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:59.699Z", - "time": 129, + "startedDateTime": "2020-05-04T16:41:22.586Z", + "time": 90, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 90 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:59.845Z", - "time": 150, + "startedDateTime": "2020-05-04T16:41:22.688Z", + "time": 151, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 150 + "wait": 151 } } ], diff --git a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite_351357568/recording.har b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite_351357568/recording.har index c878710b6..9960ed348 100644 --- a/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite_351357568/recording.har +++ b/recordings/Acceptance-organization_admin-provider_1463291290/visiting-provider-DataCite_351357568/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | provider/visiting provider DataCite", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:29:57.955Z", - "time": 99, + "startedDateTime": "2020-05-04T16:41:20.391Z", + "time": 93, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 93 } } ], diff --git a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-dois_692965325/recording.har b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-dois_692965325/recording.har index 3ceaac82e..0e4b65ed1 100644 --- a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-dois_692965325/recording.har +++ b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-dois_692965325/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | repository/visiting repository DataCite Journal dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -28,7 +28,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 168, + "headersSize": 746, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.datacite?include=provider" }, "response": { - "bodySize": 6137, + "bodySize": 6287, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6137, - "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6287, + "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:05.710Z", - "time": 119, + "startedDateTime": "2020-05-04T16:41:28.177Z", + "time": 109, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 119 + "wait": 109 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:55.578Z", - "time": 97, + "startedDateTime": "2020-05-04T16:41:28.305Z", + "time": 76, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 76 } }, { @@ -238,11 +238,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.datacite&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 58616, + "bodySize": 59634, "content": { "mimeType": "application/json; charset=utf-8", - "size": 58616, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/xezp-0w83\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/xezp-0w83\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/xezp-0w83\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Acme Inc\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Acme Inc Testing Division\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Testing of prototypes in the wild west with a coyoto\"}],\"publisher\":\"Acme Inc\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"6.12\",\"rightsList\":[],\"descriptions\":[{\"description\":\"Desc\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://github.com/datacite/bracco/issues\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-24T20:31:14.000Z\",\"registered\":\"2020-02-24T20:31:48.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:02:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/sgfx-x272\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/sgfx-x272\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/sgfx-x272\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"University Of Washington Libraries\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"RDA Application Profile Extension\",\"titleType\":null}],\"publisher\":\"University of Washington Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"LibraryData\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1-0-1\",\"rightsList\":[{\"rights\":\"CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"EN-us\",\"description\":\"Properties required to extend local RDA (Resource Description and Access) application profile. Extension required because RDA did not provide some elements/properties needed to fully describe our resources. Profile was written as part of the LD4P2 grant project in the interest of producing data entry forms in the linked data cataloging environment called Sinopia.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://github.com/datacite/bracco/issues/265\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-24T20:36:07.000Z\",\"registered\":\"2020-02-24T20:36:08.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T05:30:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5438/0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Anantharaman, Siva\",\"nameType\":\"Personal\",\"givenName\":\"Siva\",\"familyName\":\"Anantharaman\",\"affiliation\":[{\"name\":\"Technical University Munich\"}],\"nameIdentifiers\":[]},{\"name\":\"Gastin, Paul\",\"nameType\":\"Personal\",\"givenName\":\"Paul\",\"familyName\":\"Gastin\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Hains, Gaétan\",\"nameType\":\"Personal\",\"givenName\":\"Gaétan\",\"familyName\":\"Hains\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Mullins, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Mullins\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Rusinowitch, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Rusinowitch\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en\",\"title\":\"Editorial\",\"titleType\":null}],\"publisher\":\"Institut für Informatik, Justus-Liebig-Universität Giessen\",\"container\":{\"type\":\"Series\",\"title\":\"Journal of Automata\",\"volume\":\"Languages and Combinatorics\",\"lastPage\":\"6\",\"firstPage\":\"5\",\"identifier\":\"1430-189X\",\"identifierType\":\"ISSN\"},\"publicationYear\":2006,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2006\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Article (Journal)\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"1430-189X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2567-3785\",\"relatedIdentifierType\":\"ISSN\"}],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"Journal of Automata, Languages and Combinatorics, 5-6\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.datacite.org\",\"contentUrl\":null,\"metadataVersion\":11,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":1,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-08T09:04:59.000Z\",\"registered\":\"2018-12-08T09:13:24.000Z\",\"published\":\"2006\",\"updated\":\"2020-04-23T04:32:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/xyje-q884\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/xyje-q884\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/xyje-q884\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is th etitle\",\"titleType\":null}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-15T14:08:17.000Z\",\"registered\":\"2019-02-15T14:08:18.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T03:32:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/11frfrfr3ddsdsfdsfcx44dd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/11frfrfr3ddsdsfdsfcx44dd\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/frfrfr3d44dd\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Blow, Joe\",\"nameType\":\"Personal\",\"givenName\":\"Joe\",\"familyName\":\"Blow\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Different Title\"}],\"publisher\":\"University of Alberta Libraries\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Text/Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost/items/887f369a-6386-4814-ad6c-4bbab4908786\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-19T13:58:44.000Z\",\"registered\":\"2019-02-19T13:58:45.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T02:02:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4106-65-6161\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4106-65-6161\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6909-1823\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"F\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8331-1389\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"B\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3412-9086\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Green Bay Tree\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://waters.biz/julius\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":393,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:38:45.000Z\",\"registered\":\"2020-01-23T21:56:46.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-22T08:02:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6824-56-1761\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6824-56-1761\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-2482-5691\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8001-328X\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3287-3175\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Summer Bird-Cage\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://jenkins.net/matt_lakin\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":535,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:23:27.000Z\",\"registered\":\"2020-01-27T17:48:12.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-22T07:03:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5386-51-3608\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5386-51-3608\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ma, J\",\"nameType\":\"Personal\",\"givenName\":\"J\",\"familyName\":\"Ma\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-2482-5691\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ma, H\",\"nameType\":\"Personal\",\"givenName\":\"H\",\"familyName\":\"Ma\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8001-328X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"H, Julious\",\"nameType\":\"Personal\",\"givenName\":\"Julious\",\"familyName\":\"H\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3287-3175\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"The Wives of Bath\",\"titleType\":null}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":null,\"description\":\"Data from: A new malaria agent in African hominids.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mcglynn.biz/shavon\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:23:27.000Z\",\"registered\":\"2020-01-26T21:36:15.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-22T06:32:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/amwb-f125\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/amwb-f125\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/amwb-f125\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-29T15:53:02.000Z\",\"registered\":\"2019-01-29T15:53:03.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6580-84-8111\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6580-84-8111\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6909-1823\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"F\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8331-1389\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"B\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3412-9086\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"If Not Now, When?\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnwelch.org/marilyn.gibson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":518,\"referenceCount\":0,\"citationCount\":9,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:38:45.000Z\",\"registered\":\"2020-01-25T17:46:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-22T05:02:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/p6qw-y641\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/p6qw-y641\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/p6qw-y641\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-29T16:06:38.000Z\",\"registered\":\"2019-01-29T16:06:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T04:31:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/y32e-2n40\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/y32e-2n40\",\"identifiers\":[],\"creators\":[{\"name\":\"Carberry, Josiah\",\"nameType\":\"Personal\",\"givenName\":\"Josiah\",\"familyName\":\"Carberry\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-21T12:13:43.000Z\",\"registered\":\"2019-06-21T12:13:59.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T03:01:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/twp5-0s53\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/twp5-0s53\",\"identifiers\":[],\"creators\":[{\"name\":\"Carberry, Josiah\",\"nameType\":\"Personal\",\"givenName\":\"Josiah\",\"familyName\":\"Carberry\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-21T12:06:05.000Z\",\"registered\":\"2019-06-21T12:06:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/fderer88g55553d3ddd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/fderer88g55553d3ddd\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/fderer88g55553d3ddd\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-19T13:41:24.000Z\",\"registered\":\"2019-02-19T13:41:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/t0v4-zj71\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/t0v4-zj71\",\"identifiers\":[],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-07T13:07:50.000Z\",\"registered\":\"2019-06-07T13:08:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T03:32:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1855-20-2702\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1855-20-2702\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-2482-5691\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8001-328X\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3287-3175\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"To Say Nothing of the Dog\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://rau.biz/laurence.wintheiser\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":408,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:23:26.000Z\",\"registered\":\"2020-02-04T20:40:05.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T02:01:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/68qg-1775\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/68qg-1775\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.14454/68qg-1775\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Lindman, Karin\",\"nameType\":\"Personal\",\"givenName\":\"Karin\",\"familyName\":\"Lindman\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1298-517X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Rose, Jerónimo F.\",\"nameType\":\"Personal\",\"givenName\":\"Jerónimo F.\",\"familyName\":\"Rose\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3845-8546\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Lindvall, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Lindvall\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7014-8874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Stadler, Caroline Bivik\",\"nameType\":\"Personal\",\"givenName\":\"Caroline Bivik\",\"familyName\":\"Stadler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-7250-234X\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Skin data from the Visual Sweden project DROID\"}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Pathology\"},{\"subject\":\"Skin\"},{\"subject\":\"Cancer\"},{\"subject\":\"Whole slide imaging\"},{\"subject\":\"Annotated\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-09\",\"dateType\":\"Issued\"},{\"date\":\"2019-01-09\",\"dateType\":\"Created\"},{\"date\":\"2019-01-09\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Restricted access\",\"rightsUri\":\"https://datasets.aida.medtech4health.se/10.23698/aida/drsk#license\"}],\"descriptions\":[{\"lang\":null,\"description\":\"99 skin WSI (whole slide images): 49 abnormal cases and 50 normal benign.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://datasets.aida.medtech4health.se/10.23698/aida/drsk8\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-08T12:59:27.000Z\",\"registered\":\"2019-04-08T12:59:30.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-20T06:31:57.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/fdererg33\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/fdererg33\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/fdererg33\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-29T16:03:14.000Z\",\"registered\":\"2019-01-29T16:03:15.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-20T05:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/bwst-y611\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/bwst-y611\",\"identifiers\":[],\"creators\":[{\"givenName\":\"John\",\"familyName\":\"Smith\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Title\"}],\"publisher\":\"Publisher\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Paper\",\"resourceTypeGeneral\":\"DataPaper\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://example.org\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-28T17:57:19.000Z\",\"registered\":\"2018-12-28T17:57:19.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-20T02:32:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":196,\"totalPages\":8,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":109},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":80},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":7}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":51},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":38},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":12},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":4},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":3},{\"id\":\"software\",\"title\":\"Software\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"other\",\"title\":\"Other\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":29},{\"id\":\"2019\",\"title\":\"2019\",\"count\":117},{\"id\":\"2018\",\"title\":\"2018\",\"count\":44},{\"id\":\"2017\",\"title\":\"2017\",\"count\":5},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":51},{\"id\":\"2018\",\"title\":\"2018\",\"count\":6},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2013\",\"title\":\"2013\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":24},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1},{\"id\":\"1998\",\"title\":\"1998\",\"count\":11},{\"id\":\"1996\",\"title\":\"1996\",\"count\":1},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1},{\"id\":\"1920\",\"title\":\"1920\",\"count\":1},{\"id\":\"1918\",\"title\":\"1918\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":42},{\"id\":\"2018\",\"title\":\"2018\",\"count\":15}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":196}],\"clients\":[{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":196}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":6},{\"id\":\"ror.org/02e2c7k09\",\"title\":\"Delft University of Technology\",\"count\":1}],\"prefixes\":[{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":117},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":32},{\"id\":\"10.70002\",\"title\":\"10.70002\",\"count\":28},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":16},{\"id\":\"10.0144\",\"title\":\"10.0144\",\"count\":1},{\"id\":\"10.70048\",\"title\":\"10.70048\",\"count\":1},{\"id\":\"10.70126\",\"title\":\"10.70126\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":82},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":1}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":65},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":52},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":27},{\"id\":\"test\",\"title\":\"Test\",\"count\":21},{\"id\":\"mds\",\"title\":\"Mds\",\"count\":8}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":34},{\"id\":\"500\",\"title\":\"500\",\"count\":15},{\"id\":\"404\",\"title\":\"404\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":62},{\"id\":\"1\",\"title\":\"1\",\"count\":14}],\"linkChecksSchemaOrgId\":13,\"linkChecksDcIdentifier\":2,\"linkChecksCitationDoi\":1,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":24},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":24},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":24},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":24},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":24},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":24},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":24},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":5},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":3},{\"id\":\"Assessment\",\"title\":\"Assessment\",\"count\":2},{\"id\":\"CELT\",\"title\":\"Celt\",\"count\":2},{\"id\":\"Chemistry\",\"title\":\"Chemistry\",\"count\":2},{\"id\":\"Engineering\",\"title\":\"Engineering\",\"count\":2},{\"id\":\"Information Literacy\",\"title\":\"Information Literacy\",\"count\":2},{\"id\":\"Purdue University\",\"title\":\"Purdue University\",\"count\":2}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":37},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":3240}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1899}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.datacite&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.datacite&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 59634, + "text": "{\"data\":[{\"id\":\"10.14454/t0v4-zj71\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/t0v4-zj71\",\"identifiers\":[],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-07T13:07:50.000Z\",\"registered\":\"2019-06-07T13:08:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T10:31:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/cne7-ar31\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/cne7-ar31\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.14454/cne7-ar31\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"de Smaele, Madeleine\",\"nameType\":\"Personal\",\"givenName\":\"Madeleine\",\"familyName\":\"de Smaele\",\"affiliation\":[{\"name\":\"Delft University of Technology\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/02e2c7k09\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8963-3415\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Announcing schema 4.2\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-03-20T07:17:52.792Z\",\"dateType\":\"Issued\"},{\"date\":\"2019-03-20T07:17:52.792Z\",\"dateType\":\"Created\"},{\"date\":\"2019-03-20T07:17:52.792Z\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"The DataCite Metadata Schema is the basis for the metadata you submit to DataCite. It tells you the available fields and structure for your metadata records, and it’s what we validate against to make sure everything is as it should be. The metadata...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/announcing-schema-4-2/\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-25T19:12:24.000Z\",\"registered\":\"2019-03-25T19:12:26.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T09:31:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6580-84-8111\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6580-84-8111\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6909-1823\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"F\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8331-1389\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"B\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3412-9086\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"If Not Now, When?\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnwelch.org/marilyn.gibson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":518,\"referenceCount\":0,\"citationCount\":9,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:38:45.000Z\",\"registered\":\"2020-01-25T17:46:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T08:31:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/gkp6-2749\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/gkp6-2749\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/gkp6-2749\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is th etitle\",\"titleType\":null}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-29T15:53:21.000Z\",\"registered\":\"2019-01-29T15:53:21.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T07:31:44.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/bwst-y611\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/bwst-y611\",\"identifiers\":[],\"creators\":[{\"givenName\":\"John\",\"familyName\":\"Smith\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Title\"}],\"publisher\":\"Publisher\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Paper\",\"resourceTypeGeneral\":\"DataPaper\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://example.org\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-28T17:57:19.000Z\",\"registered\":\"2018-12-28T17:57:19.000Z\",\"published\":\"2018\",\"updated\":\"2020-05-04T07:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/fderer88g55553d3ddd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/fderer88g55553d3ddd\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/fderer88g55553d3ddd\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-19T13:41:24.000Z\",\"registered\":\"2019-02-19T13:41:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T06:02:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2347-06-3058\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2347-06-3058\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6909-1823\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"F\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8331-1389\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"B\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3412-9086\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"By Grand Central Station I Sat Down and Wept\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wisokyleuschke.io/mallory\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:38:45.000Z\",\"registered\":\"2020-01-29T21:38:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:32:41.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/8yfh-pg61\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/8yfh-pg61\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/8yfh-pg61\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[{\"name\":\"University of Bayreuth\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is the title\",\"titleType\":null}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Test\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-15T14:08:09.000Z\",\"registered\":\"2019-02-15T14:08:13.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T03:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/twp5-0s53\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/twp5-0s53\",\"identifiers\":[],\"creators\":[{\"name\":\"Carberry, Josiah\",\"nameType\":\"Personal\",\"givenName\":\"Josiah\",\"familyName\":\"Carberry\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Blog post\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"The description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/hear-us-ror-announcing-our-first-prototype-and-next-steps/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-21T12:06:05.000Z\",\"registered\":\"2019-06-21T12:06:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T10:31:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/vxfa-y122\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/vxfa-y122\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/vxfa-y122\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Satterthwaite, William\",\"nameType\":\"Personal\",\"givenName\":\"William\",\"familyName\":\"Satterthwaite\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-0436-7390\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/introducing-the-pid-graph/\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-30T21:18:37.000Z\",\"registered\":\"2019-03-30T21:18:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:36.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/fdererg33\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/fdererg33\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/fdererg33\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-29T16:03:14.000Z\",\"registered\":\"2019-01-29T16:03:15.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T03:31:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2840-95-2218\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2840-95-2218\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-2482-5691\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8001-328X\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3287-3175\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Oh! To be in England\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://raynor.net/evangeline_rogahn\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:23:26.000Z\",\"registered\":\"2020-01-21T17:57:02.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T02:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6824-56-1761\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6824-56-1761\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-2482-5691\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8001-328X\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3287-3175\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Summer Bird-Cage\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://jenkins.net/matt_lakin\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":535,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:23:27.000Z\",\"registered\":\"2020-01-27T17:48:12.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T11:01:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/12334296\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/12334296\",\"identifiers\":[],\"creators\":[{\"name\":\"Joyce Mott Anderson\",\"affiliation\":[]}],\"titles\":[{\"title\":\"The effects of early intervention on young handicapped children who are nonverbal or have limited expressive language skills\"}],\"publisher\":\"University of Nevada, Las Vegas\",\"container\":{},\"publicationYear\":1988,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://digitalscholarship.unlv.edu/rtds/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-08T08:20:10.000Z\",\"registered\":\"2019-04-08T08:20:11.000Z\",\"published\":\"1988\",\"updated\":\"2020-05-02T09:02:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/hz8s-hx28\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/hz8s-hx28\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/hz8s-hx28\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Schneider, Kirk\",\"nameType\":\"Personal\",\"givenName\":\"Kirk\",\"familyName\":\"Schneider\",\"affiliation\":[]}],\"titles\":[{\"title\":\"This is th etitle\"}],\"publisher\":\"schneider, kirk\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-25\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mynotebook.labarchives.com/doi/MS4zfDEvMS9Ob3RlYm9vay8xOTg1MTkyMzA1fDMuMw==/10.70002/pyjc-x105\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-29T15:58:36.000Z\",\"registered\":\"2019-01-29T15:58:36.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-02T06:32:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/w2zvvvdvm-5q4q\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/w2zvvvdvm-5q4q\",\"identifiers\":[],\"creators\":[{\"name\":\"Klineberg, Stephen L.\",\"nameType\":\"Personal\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Houston's Ethnic Communities: Findings from the Thirteenth Year of the Houston Area Survey\"}],\"publisher\":\"Rice University\",\"container\":{},\"publicationYear\":1994,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://hdl.handle.net/1911/105172\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-11T10:38:06.000Z\",\"registered\":\"2019-03-11T10:38:06.000Z\",\"published\":\"1994\",\"updated\":\"2020-05-01T16:00:57.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.14454/68qg-1775\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/68qg-1775\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.14454/68qg-1775\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Lindman, Karin\",\"nameType\":\"Personal\",\"givenName\":\"Karin\",\"familyName\":\"Lindman\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1298-517X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Rose, Jerónimo F.\",\"nameType\":\"Personal\",\"givenName\":\"Jerónimo F.\",\"familyName\":\"Rose\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3845-8546\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Lindvall, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Lindvall\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7014-8874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Stadler, Caroline Bivik\",\"nameType\":\"Personal\",\"givenName\":\"Caroline Bivik\",\"familyName\":\"Stadler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-7250-234X\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Skin data from the Visual Sweden project DROID\"}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Pathology\"},{\"subject\":\"Skin\"},{\"subject\":\"Cancer\"},{\"subject\":\"Whole slide imaging\"},{\"subject\":\"Annotated\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-09\",\"dateType\":\"Issued\"},{\"date\":\"2019-01-09\",\"dateType\":\"Created\"},{\"date\":\"2019-01-09\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Restricted access\",\"rightsUri\":\"https://datasets.aida.medtech4health.se/10.23698/aida/drsk#license\"}],\"descriptions\":[{\"lang\":null,\"description\":\"99 skin WSI (whole slide images): 49 abnormal cases and 50 normal benign.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://datasets.aida.medtech4health.se/10.23698/aida/drsk8\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-08T12:59:27.000Z\",\"registered\":\"2019-04-08T12:59:30.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T15:01:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70002/11frfrfr3ddsdsfdsfcx44dd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70002/11frfrfr3ddsdsfdsfcx44dd\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70002/frfrfr3d44dd\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Blow, Joe\",\"nameType\":\"Personal\",\"givenName\":\"Joe\",\"familyName\":\"Blow\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Different Title\"}],\"publisher\":\"University of Alberta Libraries\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Text/Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost/items/887f369a-6386-4814-ad6c-4bbab4908786\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"ez\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-19T13:58:44.000Z\",\"registered\":\"2019-02-19T13:58:45.000Z\",\"published\":\"2017\",\"updated\":\"2020-05-01T12:02:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3292-58-8972\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3292-58-8972\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6909-1823\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"F, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"F\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-8331-1389\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"B, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"B\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3412-9086\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Nectar in a Sieve\",\"titleType\":null}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"resourceType\":\"journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":null,\"description\":\"Data from: A new malaria agent in African hominids.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://franeckikutch.co/inge\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:38:45.000Z\",\"registered\":\"2020-01-25T18:33:56.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-01T10:02:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":196,\"totalPages\":8,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":109},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":80},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":7}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":51},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":38},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":12},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":4},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":3},{\"id\":\"software\",\"title\":\"Software\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"other\",\"title\":\"Other\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":29},{\"id\":\"2019\",\"title\":\"2019\",\"count\":117},{\"id\":\"2018\",\"title\":\"2018\",\"count\":44},{\"id\":\"2017\",\"title\":\"2017\",\"count\":5},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":51},{\"id\":\"2018\",\"title\":\"2018\",\"count\":6},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2013\",\"title\":\"2013\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":24},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1},{\"id\":\"1998\",\"title\":\"1998\",\"count\":11},{\"id\":\"1996\",\"title\":\"1996\",\"count\":1},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1},{\"id\":\"1920\",\"title\":\"1920\",\"count\":1},{\"id\":\"1918\",\"title\":\"1918\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":42},{\"id\":\"2018\",\"title\":\"2018\",\"count\":15}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":196}],\"clients\":[{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":196}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":6},{\"id\":\"ror.org/02e2c7k09\",\"title\":\"Delft University of Technology\",\"count\":1}],\"prefixes\":[{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":117},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":32},{\"id\":\"10.70002\",\"title\":\"10.70002\",\"count\":28},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":16},{\"id\":\"10.0144\",\"title\":\"10.0144\",\"count\":1},{\"id\":\"10.70048\",\"title\":\"10.70048\",\"count\":1},{\"id\":\"10.70126\",\"title\":\"10.70126\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":125},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":34},{\"id\":\"500\",\"title\":\"500\",\"count\":15},{\"id\":\"404\",\"title\":\"404\",\"count\":3}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":37},{\"id\":\"2006\",\"title\":\"2006\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":3240}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1899}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.datacite&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.datacite&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -261,8 +261,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:55.578Z", - "time": 264, + "startedDateTime": "2020-05-04T16:41:28.305Z", + "time": 266, "timings": { "blocked": -1, "connect": -1, @@ -270,7 +270,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 264 + "wait": 266 } } ], diff --git a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-prefixes_3178648116/recording.har b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-prefixes_3178648116/recording.har index 9897f132b..1d16d1fe4 100644 --- a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-prefixes_3178648116/recording.har +++ b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal-prefixes_3178648116/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | repository/visiting repository DataCite Journal prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -28,7 +28,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 168, + "headersSize": 746, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.datacite?include=provider" }, "response": { - "bodySize": 6137, + "bodySize": 6287, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6137, - "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6287, + "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:04.912Z", - "time": 102, + "startedDateTime": "2020-05-04T16:41:26.553Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 94 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:54.961Z", - "time": 76, + "startedDateTime": "2020-05-04T16:41:26.947Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 103 } }, { @@ -181,8 +181,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:54.961Z", - "time": 162, + "startedDateTime": "2020-05-04T16:41:26.947Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -190,7 +190,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 162 + "wait": 113 } }, { @@ -249,11 +249,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.datacite&size=25&year=" }, "response": { - "bodySize": 2025, + "bodySize": 1913, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2025, - "text": "{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2019-02-03T17:38:20.000Z\",\"updatedAt\":\"2019-02-03T17:38:20.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.70001\",\"type\":\"prefix\"}}}},{\"id\":\"cef1d55a-4195-46a2-a7a9-84383ccef486\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2018-11-16T14:21:04.000Z\",\"updatedAt\":\"2018-11-16T14:21:04.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"9464760f-3435-4123-936d-f2f91c7945f0\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.70002\",\"type\":\"prefix\"}}}},{\"id\":\"d0464ab8-92f6-4ab9-a007-57112f76b880\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2011-03-30T08:56:21.000Z\",\"updatedAt\":\"2017-12-02T22:44:51.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"55d0c8c5-83e8-4fda-a20b-618bcce9b96a\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.5438\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":3,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":3}],\"repositories\":[{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.datacite&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.datacite&year=\"}}" + "size": 1913, + "text": "{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2019-02-03T17:38:20.000Z\",\"updatedAt\":\"2019-02-03T17:38:20.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.70001\",\"type\":\"prefix\"}}}},{\"id\":\"cef1d55a-4195-46a2-a7a9-84383ccef486\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2018-11-16T14:21:04.000Z\",\"updatedAt\":\"2018-11-16T14:21:04.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"9464760f-3435-4123-936d-f2f91c7945f0\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.70002\",\"type\":\"prefix\"}}}},{\"id\":\"d0464ab8-92f6-4ab9-a007-57112f76b880\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2011-03-30T08:56:21.000Z\",\"updatedAt\":\"2017-12-02T22:44:51.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"55d0c8c5-83e8-4fda-a20b-618bcce9b96a\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.5438\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":3,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.datacite&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.datacite&year=\"}}" }, "cookies": [], "headers": [ @@ -272,8 +272,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:54.961Z", - "time": 212, + "startedDateTime": "2020-05-04T16:41:26.947Z", + "time": 153, "timings": { "blocked": -1, "connect": -1, @@ -281,7 +281,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 212 + "wait": 153 } }, { @@ -331,8 +331,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:55.271Z", - "time": 111, + "startedDateTime": "2020-05-04T16:41:27.888Z", + "time": 124, "timings": { "blocked": -1, "connect": -1, @@ -340,11 +340,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 124 } }, { - "_id": "a2e430b237ae88337f39ea64e95c87d5", + "_id": "b02a9f0dc7d2ea95b6f7b821f6228333", "_order": 0, "cache": {}, "request": { @@ -360,18 +360,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 715, + "headersSize": 716, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.5438" + "url": "https://api.test.datacite.org/prefixes/10.70001" }, "response": { - "bodySize": 461, + "bodySize": 463, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.5438\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.5438\",\"createdAt\":\"2011-03-30T08:56:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d0464ab8-92f6-4ab9-a007-57112f76b880\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55d0c8c5-83e8-4fda-a20b-618bcce9b96a\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 463, + "text": "{\"data\":{\"id\":\"10.70001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70001\",\"createdAt\":\"2017-09-17T14:36:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -390,8 +390,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:55.271Z", - "time": 137, + "startedDateTime": "2020-05-04T16:41:27.888Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -399,11 +399,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 137 + "wait": 126 } }, { - "_id": "b02a9f0dc7d2ea95b6f7b821f6228333", + "_id": "a2e430b237ae88337f39ea64e95c87d5", "_order": 0, "cache": {}, "request": { @@ -419,18 +419,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 716, + "headersSize": 715, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70001" + "url": "https://api.test.datacite.org/prefixes/10.5438" }, "response": { - "bodySize": 463, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 463, - "text": "{\"data\":{\"id\":\"10.70001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70001\",\"createdAt\":\"2017-09-17T14:36:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.5438\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.5438\",\"createdAt\":\"2011-03-30T08:56:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"d0464ab8-92f6-4ab9-a007-57112f76b880\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55d0c8c5-83e8-4fda-a20b-618bcce9b96a\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -449,8 +449,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:55.271Z", - "time": 162, + "startedDateTime": "2020-05-04T16:41:27.888Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -458,7 +458,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 162 + "wait": 139 } } ], diff --git a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal_3535682716/recording.har b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal_3535682716/recording.har index c1ace13fe..97cc8acc1 100644 --- a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal_3535682716/recording.har +++ b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Journal_3535682716/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | repository/visiting repository DataCite Journal", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -28,7 +28,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 168, + "headersSize": 746, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.datacite?include=provider" }, "response": { - "bodySize": 6137, + "bodySize": 6287, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6137, - "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6287, + "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:02.568Z", - "time": 107, + "startedDateTime": "2020-05-04T16:41:25.261Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 107 + "wait": 133 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:53.967Z", - "time": 214, + "startedDateTime": "2020-05-04T16:41:25.514Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 214 + "wait": 97 } }, { @@ -163,11 +163,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.datacite?include=provider" }, "response": { - "bodySize": 6247, + "bodySize": 6287, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6247, - "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6287, + "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:53.967Z", - "time": 336, + "startedDateTime": "2020-05-04T16:41:25.514Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 336 + "wait": 116 } }, { @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:53.968Z", - "time": 313, + "startedDateTime": "2020-05-04T16:41:25.516Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 313 + "wait": 146 } } ], diff --git a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Test_2005196089/recording.har b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Test_2005196089/recording.har index c27dd3b8a..2eccd27bc 100644 --- a/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Test_2005196089/recording.har +++ b/recordings/Acceptance-organization_admin-repository_2151421519/visiting-repository-DataCite-Test_2005196089/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | repository/visiting repository DataCite Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -28,7 +28,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 164, + "headersSize": 742, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 5956, + "bodySize": 6106, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5956, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6106, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:04.086Z", - "time": 106, + "startedDateTime": "2020-05-04T16:41:26.093Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 98 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:54.721Z", - "time": 81, + "startedDateTime": "2020-05-04T16:41:26.311Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 81 + "wait": 113 } } ], diff --git a/recordings/Acceptance-organization_admin-user_371706472/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-organization_admin-user_371706472/visiting-specific-user_253064087/recording.har index 548269078..fbf7602b8 100644 --- a/recordings/Acceptance-organization_admin-user_371706472/visiting-specific-user_253064087/recording.har +++ b/recordings/Acceptance-organization_admin-user_371706472/visiting-specific-user_253064087/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | user/visiting specific user", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -28,7 +28,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 146, + "headersSize": 724, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], @@ -39,7 +39,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1290, - "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" + "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" }, "cookies": [], "headers": [ @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:07.703Z", - "time": 224, + "startedDateTime": "2020-05-04T16:41:31.058Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 224 + "wait": 98 } }, { @@ -87,7 +87,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 181, + "headersSize": 759, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -103,11 +103,11 @@ "url": "https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405" }, "response": { - "bodySize": 66619, + "bodySize": 66321, "content": { "mimeType": "application/json; charset=utf-8", - "size": 66619, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00359\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00359\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00359\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Ffff\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"ssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Dddd\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939140000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-29T10:41:17.000Z\",\"registered\":\"2019-04-29T10:41:18.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T01:31:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00365\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00365\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00365\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T06:21:10.000Z\",\"registered\":\"2020-04-01T06:21:11.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T06:32:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00362\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00362\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00362\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite44\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":9,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-07T08:11:09.000Z\",\"registered\":\"2019-05-07T08:11:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T04:31:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"pending teeeeeeeee\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Preprint\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-20T12:43:30.000Z\",\"registered\":\"2019-02-20T12:43:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T02:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0065\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0065\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0065\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dfd\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-10/\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T10:29:53.000Z\",\"registered\":\"2019-01-24T10:29:53.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T05:32:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.004\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.004\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.004\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dbg is down!!!!!!!!!!!!!!!!\"},{\"title\":\"Zikoukim\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"Musical Score\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Karamela\"},{\"subject\":\"Music Composition\"},{\"subject\":\"Music Education\"},{\"subject\":\"Musicology\"}],\"contributors\":[{\"name\":\"Dori, Danit Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Danit Sweet\",\"familyName\":\"Dori\",\"affiliation\":[\"Main Campus, Harvard University (Cambridge)\"],\"contributorType\":\"DataCurator\"},{\"name\":\"Jerusalem College Of Technology (Jerusalem)\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-02-14/2020\",\"dateType\":\"Collected\"},{\"date\":\"2020/2024\",\"dateType\":\"Created\"},{\"date\":\"2019-02-14\",\"dateType\":\"Updated\"},{\"date\":\"2019-05/2020\",\"dateType\":\"Valid\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"he\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.1007/s10841-006-9063-4\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"jpg\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Peretz was born and raised in Tiberias. His father was of Moroccan Jewish origin and his mother was of Iraqi Jewish origin. Peretz started singing as a poet in a synagogue in Tiberias at the age of 13 and began to compose songs. At the age of 18 Peretz was inducted into the Israel Defense Forces for obligatory military service. During his service, he performed \\\"שיר המעלות‬\\\", during Yom Hazikaron (the Israeli Memorial Day) ceremonies held at his base that received positive feedback leading to him serving in a military music band. In 2002, he started writing songs while in the Army. After release from the Army, he released his first album in 2005 entitled Mabit El Hamromim (מביט אל המרומים‬) that saw sale of over 10,000 copies in Israel\",\"descriptionType\":\"Methods\"},{\"description\":\"2017: Bucher Chadash (בחור חדש) (meaning New Guy)\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"Moshe Peretz (Hebrew: משה פרץ‬; born 10 May 1983) is an Israeli \\\"Mizrahi\\\" pop singer-songwriter and composer. He is also currently serving as a judge for the first season of The X Factor Israel.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Tiberias, Israel\"},{\"geoLocationPoint\":{\"pointLatitude\":\"10.0\",\"pointLongitude\":\"95.0\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"55.0\",\"northBoundLatitude\":\"9.0\",\"southBoundLatitude\":\"21.0\",\"westBoundLongitude\":\"95.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Go Music\",\"funderName\":\"Hadassah Medical Center (Jerusalem)\",\"awardNumber\":\"Music\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-07T06:52:08.000Z\",\"registered\":\"2019-02-07T06:52:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00370\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00370\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00370\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"sasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-06-28\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9942040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-04T05:25:24.000Z\",\"registered\":\"2019-06-04T05:25:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T02:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0057\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0057\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0057\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"sasasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933041400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-23T12:59:24.000Z\",\"registered\":\"2019-01-23T12:59:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-21T01:01:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-18T02:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123h\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123h\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Vanity Fair\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://beahan.name/domenic.treutel\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":335,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-31T21:41:43.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-18T01:01:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00356\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00356\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00356\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"tytytyty hjhjh\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018-08-24\",\"dateType\":\"Accepted\"},{\"date\":\"2017-04-01\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"},{\"rights\":\"aaaaaab jm jjjjjjjjjjjj opppppppppp\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9938841000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T10:54:22.000Z\",\"registered\":\"2019-04-18T10:54:23.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-17T22:00:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3030-53-3821\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3030-53-3821\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Precious Bane\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://schillermohr.com/theda_marks\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T21:25:18.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T21:32:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00368\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00368\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00368\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test4545455\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9940741400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-22T11:12:13.000Z\",\"registered\":\"2019-05-22T11:12:13.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-17T20:31:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"},{\"nameIdentifier\":\"WWW\",\"nameIdentifierScheme\":\"Wikidata\"}]}],\"titles\":[{\"title\":\"my doi test sand cont\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Adam, Omer\",\"nameType\":\"Personal\",\"givenName\":\"Omer\",\"familyName\":\"Adam\",\"contributorType\":\"Other\",\"nameIdentifiers\":[{\"nameIdentifier\":\"llll\",\"nameIdentifierScheme\":\"Library of Congress Name Authority File Number\"},{\"nameIdentifier\":\"VVV\",\"nameIdentifierScheme\":\"VIAF\"},{\"nameIdentifier\":\"pppp\",\"nameIdentifierScheme\":\"Pubmed author ID\"},{\"nameIdentifier\":\"ww\",\"nameIdentifierScheme\":\"Wikidata\"},{\"nameIdentifier\":\"pp\",\"nameIdentifierScheme\":\"Pivot ID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2016-05-04\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T20:57:27.000Z\",\"registered\":\"2019-04-18T20:57:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:31:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:01:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T01:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-16T22:03:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":83,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":83}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":60},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":66},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":17}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":66},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":15},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":66},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":2},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":66},{\"id\":\"test\",\"title\":\"Test\",\"count\":12},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":4},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":70},{\"id\":\"1\",\"title\":\"1\",\"count\":5}],\"linkChecksSchemaOrgId\":5,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":12},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":12},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":12},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":12},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":12},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":12},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":12},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":4},{\"id\":\"Karamela\",\"title\":\"Karamela\",\"count\":3},{\"id\":\"Music Composition\",\"title\":\"Music Composition\",\"count\":3},{\"id\":\"Music Education\",\"title\":\"Music Education\",\"count\":3},{\"id\":\"Musicology\",\"title\":\"Musicology\",\"count\":3},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":3},{\"id\":\"Architecture\",\"title\":\"Architecture\",\"count\":1},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":1}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" + "size": 66321, + "text": "{\"data\":[{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T05:31:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0034\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0034\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0034\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"test datacite sssssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[\"4568.5 kb\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-SA V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc-sa/4.0\"}],\"descriptions\":[{\"description\":\"my abstract description!\",\"descriptionType\":\"Abstract\"},{\"description\":\"cool methods\",\"descriptionType\":\"Methods\"},{\"description\":\"cool methods secont one\",\"descriptionType\":\"Methods\"},{\"description\":\"cool techinal info\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"additional or other???\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-15T09:11:24.000Z\",\"registered\":\"2020-04-06T08:46:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-03T09:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"gggg, aaaa\",\"nameType\":\"Personal\",\"givenName\":\"aaaa\",\"familyName\":\"gggg\",\"affiliation\":[]},{\"name\":\"My Group Author\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test group author\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"My Group 2\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-14T03:45:44.000Z\",\"registered\":\"2019-08-14T03:45:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0066\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0066\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0066\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"בהבסה\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08/0002-12\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"png\",\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T11:57:38.000Z\",\"registered\":\"2019-01-24T11:57:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T05:31:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cool_conf.0037\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cool_conf.0037\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cool_conf.0037\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearcherID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"ERA\"}]}],\"titles\":[{\"title\":\"Test url\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Conference abstract\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-16T16:41:22.000Z\",\"registered\":\"2019-01-16T16:53:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T04:31:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00357\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00357\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00357\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Lea Sweet\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Alzheimer's research & therapy\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-13T09:00:16.000Z\",\"registered\":\"2020-02-13T09:00:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-02T10:02:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0090\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0090\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0090\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"wqwqwqw\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Model\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-17T09:37:45.000Z\",\"registered\":\"2019-02-17T09:37:47.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T13:01:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/from_sand_datacite.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/from_sand_datacite.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/from_sand_datacite.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Bayandina, O. S\",\"nameType\":\"Personal\",\"givenName\":\"O. S\",\"familyName\":\"Bayandina\",\"affiliation\":[]},{\"name\":\"Alakoz, A. V\",\"nameType\":\"Personal\",\"givenName\":\"A. V\",\"familyName\":\"Alakoz\",\"affiliation\":[]},{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Val’tts, I. E\",\"nameType\":\"Personal\",\"givenName\":\"I. E\",\"familyName\":\"Val’tts\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Magnetic fields in methanol maser condensations based on data for related regions. Seven sources: Observational parameters\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-17T05:45:01.000Z\",\"registered\":\"2020-02-17T05:45:02.000Z\",\"published\":\"2013\",\"updated\":\"2020-05-01T12:02:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/10377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/10377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/10377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite subject\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-20T10:22:10.000Z\",\"registered\":\"2019-11-20T10:22:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T10:02:47.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0033\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0033\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0033\",\"identifierType\":\"DOI\"},{\"identifier\":\"1111-2222\",\"identifierType\":\"ISSN\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"TEST for Job - data cite - was existing333333333333\"}],\"publisher\":\"fsgs\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-14T10:33:23.000Z\",\"registered\":\"2019-02-13T11:54:32.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-30T10:31:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/06377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/06377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/06377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.5555/test.11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-19T12:32:09.000Z\",\"registered\":\"2019-11-19T12:32:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-29T09:00:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-29T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T13:34:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T13:34:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0064\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0064\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0064\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"geo\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"fgsfgsg\\nsgsgs\"},{\"geoLocationPlace\":\"gsgsg\\nsgsgsg\"}],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T08:39:07.000Z\",\"registered\":\"2019-01-24T08:39:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-28T09:01:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cw.00040\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cw.00040\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cw.00040\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Manevitz, Larry\",\"nameType\":\"Personal\",\"givenName\":\"Larry\",\"familyName\":\"Manevitz\",\"affiliation\":[]},{\"name\":\"Abbas, Emily Funny\",\"nameType\":\"Personal\",\"givenName\":\"Emily Funny\",\"familyName\":\"Abbas\",\"affiliation\":[\"University of Iowa Libraries, Nursing\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Dance1\"}],\"publisher\":\"University of Iowa Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"test type\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Closed\"},{\"rights\":\"Test copyright\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-23T16:16:43.000Z\",\"registered\":\"2019-05-23T16:16:44.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T05:32:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":96,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":84},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":36},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":68},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":43},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":71},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":71},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":3}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":71},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":38}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" }, "cookies": [], "headers": [ @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:07.703Z", - "time": 358, + "startedDateTime": "2020-05-04T16:41:31.058Z", + "time": 394, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 358 + "wait": 394 } } ], diff --git a/recordings/Acceptance-organization_admin-user_371706472/visiting-users_37556140/recording.har b/recordings/Acceptance-organization_admin-user_371706472/visiting-users_37556140/recording.har index e4dc1119e..ee47ad521 100644 --- a/recordings/Acceptance-organization_admin-user_371706472/visiting-users_37556140/recording.har +++ b/recordings/Acceptance-organization_admin-user_371706472/visiting-users_37556140/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | organization_admin | user/visiting users", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -28,7 +28,7 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 212, + "headersSize": 790, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ @@ -67,7 +67,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 8217, - "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":66889,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" + "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":67002,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" }, "cookies": [], "headers": [ @@ -86,8 +86,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:06.718Z", - "time": 144, + "startedDateTime": "2020-05-04T16:41:30.078Z", + "time": 80, "timings": { "blocked": -1, "connect": -1, @@ -95,7 +95,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 144 + "wait": 80 } }, { @@ -127,11 +127,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7004, + "bodySize": 7077, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7004, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7077, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -150,8 +150,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:57.123Z", - "time": 147, + "startedDateTime": "2020-05-04T16:41:30.182Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -159,7 +159,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 147 + "wait": 98 } }, { @@ -234,11 +234,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 17876, + "bodySize": 17870, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17876, - "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":61,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":60},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" + "size": 17870, + "text": "{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.pure\",\"type\":\"repositories\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"devel.atira.dk\",\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0138\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dce\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Data Curation Experts, LLC\",\"symbol\":\"DATACITE.DCE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"tom@curationexperts.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-17T11:54:51.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24354\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ntu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DR-NTU (Data)\",\"symbol\":\"DATACITE.NTU\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"shuwen@ntu.edu.sg\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T15:16:35.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24363\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.egi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"EGI Foundation\",\"symbol\":\"DATACITE.EGI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"matthew.viljoen@egi.eu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"egi.eu\",\"issn\":null,\"url\":null,\"created\":\"2016-07-07T09:39:32.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.elsevier\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Elsevier\",\"symbol\":\"DATACITE.ELSEVIER\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mikkel.agesen@elsevier.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-02-24T07:53:47.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0159\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.cmcc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Euro-Mediterranean Center on Climate Change (CMCC)\",\"symbol\":\"DATACITE.CMCC\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mauro.buonocore@cmcc.it\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"cmcc.it\",\"issn\":null,\"url\":null,\"created\":\"2017-03-21T08:54:56.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0308\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.esrf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"European Synchrotron Radiation Facility\",\"symbol\":\"DATACITE.ESRF\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"maxime.chaillet@esrf.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-23T17:24:42.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24364\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.ghsl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Galter Health Sciences Library, Northwestern University\",\"symbol\":\"DATACITE.GHSL\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"matthew.carson@northwestern.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2018-03-08T18:30:03.000Z\",\"updated\":\"2019-09-03T18:02:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24418\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.unavco\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Geodetic Data Services UNAVCO\",\"symbol\":\"DATACITE.UNAVCO\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"fboler@unavco.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T11:13:23.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24355\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.harvard\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Harvard Dataverse\",\"symbol\":\"DATACITE.HARVARD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"support@dataverse.org\",\"alternateName\":null,\"description\":\"This is the test account used for Dataverse developers at Harvard (IQSS). It's not the account we use in production for Harvard Dataverse.\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2016-01-26T17:23:50.000Z\",\"updated\":\"2019-08-07T22:35:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.hbp\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Human Brain Project\",\"symbol\":\"DATACITE.HBP\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"jeffrey.muller@epfl.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:15:12.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24409\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.kaust\",\"type\":\"repositories\",\"attributes\":{\"name\":\"King Abdullah University of Science and Technology\",\"symbol\":\"DATACITE.KAUST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"mohamed.baessa@kaust.edu.sa\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-02-01T12:46:41.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24410\",\"type\":\"prefixes\"}]}}},{\"id\":\"datacite.lcrnz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Landcare Research Data Repository\",\"symbol\":\"DATACITE.LCRNZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mcglinchya@landcareresearch.co.nz\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2017-11-20T14:59:34.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24360\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":62,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":7},{\"id\":\"2018\",\"title\":\"2018\",\"count\":23},{\"id\":\"2017\",\"title\":\"2017\",\"count\":24},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":null,\"count\":62}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":61},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":1}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":1},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":2},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=datacite&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -257,8 +257,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:39:57.278Z", - "time": 166, + "startedDateTime": "2020-05-04T16:41:30.305Z", + "time": 145, "timings": { "blocked": -1, "connect": -1, @@ -266,7 +266,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 166 + "wait": 145 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-form_2071293154/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-form_2071293154/recording.har index 59be533af..d154d4985 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-form_2071293154/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-form_2071293154/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/editing admin form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:10.828Z", - "time": 100, + "startedDateTime": "2020-05-04T16:41:34.143Z", + "time": 107, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 107 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-password-form_407768325/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-password-form_407768325/recording.har index 8e817ec9f..d457b17b5 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-password-form_407768325/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/editing-admin-password-form_407768325/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/editing admin password form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:11.204Z", - "time": 76, + "startedDateTime": "2020-05-04T16:41:34.682Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 76 + "wait": 94 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/is-logged-in_3542225560/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/is-logged-in_3542225560/recording.har index c5ff6a918..481550880 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/is-logged-in_3542225560/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/is-logged-in_3542225560/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/is logged in", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:08.239Z", - "time": 124, + "startedDateTime": "2020-05-04T16:41:31.716Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 124 + "wait": 118 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-homepage_882376104/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-homepage_882376104/recording.har index 06baa486d..6934ee24c 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-homepage_882376104/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-homepage_882376104/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/visiting homepage", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:08.591Z", - "time": 95, + "startedDateTime": "2020-05-04T16:41:32.151Z", + "time": 87, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 87 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-info_3527359880/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-info_3527359880/recording.har index f62318b09..15e77f0f1 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-info_3527359880/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-info_3527359880/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/visiting info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:08.951Z", - "time": 94, + "startedDateTime": "2020-05-04T16:41:32.519Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 91 } }, { @@ -94,11 +94,11 @@ "url": "https://api.test.datacite.org/providers/admin/stats" }, "response": { - "bodySize": 2127, + "bodySize": 2045, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2127, - "text": "{\"providers\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":20},{\"id\":\"2012\",\"title\":\"2012\",\"count\":21},{\"id\":\"2013\",\"title\":\"2013\",\"count\":22},{\"id\":\"2014\",\"title\":\"2014\",\"count\":26},{\"id\":\"2015\",\"title\":\"2015\",\"count\":27},{\"id\":\"2016\",\"title\":\"2016\",\"count\":40},{\"id\":\"2017\",\"title\":\"2017\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":115},{\"id\":\"2019\",\"title\":\"2019\",\"count\":310},{\"id\":\"2020\",\"title\":\"2020\",\"count\":408}],\"clients\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":6},{\"id\":\"2011\",\"title\":\"2011\",\"count\":116},{\"id\":\"2012\",\"title\":\"2012\",\"count\":255},{\"id\":\"2013\",\"title\":\"2013\",\"count\":438},{\"id\":\"2014\",\"title\":\"2014\",\"count\":658},{\"id\":\"2015\",\"title\":\"2015\",\"count\":946},{\"id\":\"2016\",\"title\":\"2016\",\"count\":1247},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1392},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1605},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1929},{\"id\":\"2020\",\"title\":\"2020\",\"count\":2098}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":252942},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007650},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":876597},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":151536},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":94592},{\"id\":\"other\",\"title\":\"Other\",\"count\":72569},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12051},{\"id\":\"software\",\"title\":\"Software\",\"count\":7350},{\"id\":\"image\",\"title\":\"Image\",\"count\":7258},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4509},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":670},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":644},{\"id\":\"service\",\"title\":\"Service\",\"count\":116},{\"id\":\"event\",\"title\":\"Event\",\"count\":88},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":77},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52},{\"id\":\"model\",\"title\":\"Model\",\"count\":39}]}" + "size": 2045, + "text": "{\"providers\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":20},{\"id\":\"2012\",\"title\":\"2012\",\"count\":21},{\"id\":\"2013\",\"title\":\"2013\",\"count\":22},{\"id\":\"2014\",\"title\":\"2014\",\"count\":26},{\"id\":\"2015\",\"title\":\"2015\",\"count\":27},{\"id\":\"2016\",\"title\":\"2016\",\"count\":40},{\"id\":\"2017\",\"title\":\"2017\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":115},{\"id\":\"2019\",\"title\":\"2019\",\"count\":310}],\"clients\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":6},{\"id\":\"2011\",\"title\":\"2011\",\"count\":116},{\"id\":\"2012\",\"title\":\"2012\",\"count\":255},{\"id\":\"2013\",\"title\":\"2013\",\"count\":438},{\"id\":\"2014\",\"title\":\"2014\",\"count\":658},{\"id\":\"2015\",\"title\":\"2015\",\"count\":946},{\"id\":\"2016\",\"title\":\"2016\",\"count\":1247},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1392},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1605},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1929}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":269886},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007671},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":877168},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":154442},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":95321},{\"id\":\"other\",\"title\":\"Other\",\"count\":81907},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12069},{\"id\":\"software\",\"title\":\"Software\",\"count\":7382},{\"id\":\"image\",\"title\":\"Image\",\"count\":7295},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4511},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":680},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":671},{\"id\":\"service\",\"title\":\"Service\",\"count\":117},{\"id\":\"model\",\"title\":\"Model\",\"count\":109},{\"id\":\"event\",\"title\":\"Event\",\"count\":89},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":78},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52}]}" }, "cookies": [], "headers": [ @@ -117,8 +117,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:09.127Z", - "time": 1612, + "startedDateTime": "2020-05-04T16:41:32.743Z", + "time": 1293, "timings": { "blocked": -1, "connect": -1, @@ -126,7 +126,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1612 + "wait": 1293 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-members_3369106031/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-members_3369106031/recording.har index 38cd6d6c1..90b7c569a 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-members_3369106031/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-members_3369106031/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/visiting members", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -83,11 +83,11 @@ "url": "https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 43525, + "bodySize": 44290, "content": { "mimeType": "application/json; charset=utf-8", - "size": 43525, - "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"globusUuid\":null,\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":\"ffdsfds\",\"organization\":\"saass\",\"department\":\"dsddddds\",\"postCode\":\"100333gggd\",\"state\":null,\"country\":\"AX\",\"city\":\"gggg\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/029djt864\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":\"https://ror.org/051dzs374\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":\"https://ror.org/05q9m0937\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":\"\",\"country\":\"\",\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-03-19T05:10:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/037mxx572\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":\"\",\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":\"Auburn University\",\"department\":null,\"postCode\":\"36849\",\"state\":\"US-AL\",\"country\":\"US\",\"city\":\"Auburn\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":\"https://ror.org/019wvm592\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@andsAttwitter\",\"billingInformation\":{\"address\":\"100 Sir Monash Drive\",\"organization\":\"\",\"department\":\"\",\"postCode\":\"3145\",\"state\":\"AU-VIC\",\"country\":\"AU\",\"city\":\"Caulfield East\"},\"rorId\":\"https://ror.org/038sjwq14\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@bceln\",\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"hannover\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@Blackfynn\",\"billingInformation\":{\"address\":\"1218 Chestnut Street, 8th Floor\",\"organization\":\"Blackfynn Inc.\",\"department\":null,\"postCode\":\"19107\",\"state\":\"US-PA\",\"country\":\"US\",\"city\":\"Philadelphia\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@britta\",\"billingInformation\":{\"address\":\"hannover street\",\"organization\":\"Datacite\",\"department\":\"bussiness\",\"postCode\":\"4445464\",\"state\":\"hannover\",\"country\":\"AL\",\"city\":\"hannover\"},\"rorId\":\"https://ror.org/0304hq317\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}},{\"id\":\"brown\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brown University Library\",\"displayName\":\"Brown University Library\",\"symbol\":\"BROWN\",\"website\":\"https://library.brown.edu/\",\"systemEmail\":\"bdr@brown.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/05gq02987\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-05-31T13:54:32.000Z\",\"updated\":\"2019-08-13T14:29:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70139\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":408,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":123},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":243},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":141},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":8},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":401},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 44290, + "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"globusUuid\":null,\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":\"ffdsfds\",\"organization\":\"saass\",\"department\":\"dsddddds\",\"postCode\":\"100333gggd\",\"state\":null,\"country\":\"AX\",\"city\":\"gggg\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/029djt864\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":\"https://ror.org/051dzs374\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":\"https://ror.org/05q9m0937\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":\"\",\"country\":\"\",\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-05-04T03:08:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"ardcanu\",\"type\":\"providers\"},{\"id\":\"jbtest\",\"type\":\"providers\"},{\"id\":\"uc\",\"type\":\"providers\"},{\"id\":\"jbtestwo\",\"type\":\"providers\"},{\"id\":\"jbthree\",\"type\":\"providers\"},{\"id\":\"ardcliz\",\"type\":\"providers\"},{\"id\":\"jbfive\",\"type\":\"providers\"},{\"id\":\"lwone\",\"type\":\"providers\"},{\"id\":\"lwardct\",\"type\":\"providers\"},{\"id\":\"tardc\",\"type\":\"providers\"},{\"id\":\"tcdu\",\"type\":\"providers\"},{\"id\":\"tunsw\",\"type\":\"providers\"},{\"id\":\"tjcu\",\"type\":\"providers\"},{\"id\":\"tlatrobe\",\"type\":\"providers\"},{\"id\":\"taad\",\"type\":\"providers\"},{\"id\":\"tuwa\",\"type\":\"providers\"},{\"id\":\"tcsiro\",\"type\":\"providers\"},{\"id\":\"tmonash\",\"type\":\"providers\"},{\"id\":\"tala\",\"type\":\"providers\"},{\"id\":\"tanu\",\"type\":\"providers\"},{\"id\":\"tdpaw\",\"type\":\"providers\"},{\"id\":\"taic\",\"type\":\"providers\"},{\"id\":\"tansto\",\"type\":\"providers\"},{\"id\":\"tnti\",\"type\":\"providers\"}]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/037mxx572\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":\"\",\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":\"Auburn University\",\"department\":null,\"postCode\":\"36849\",\"state\":\"US-AL\",\"country\":\"US\",\"city\":\"Auburn\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":\"https://ror.org/019wvm592\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@andsAttwitter\",\"billingInformation\":{\"address\":\"100 Sir Monash Drive\",\"organization\":\"\",\"department\":\"\",\"postCode\":\"3145\",\"state\":\"AU-VIC\",\"country\":\"AU\",\"city\":\"Caulfield East\"},\"rorId\":\"https://ror.org/038sjwq14\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"lwardct\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons LWTEST\",\"displayName\":\"Australian Research Data Commons LWTEST\",\"symbol\":\"LWARDCT\",\"website\":null,\"systemEmail\":\"liz.woods@ardc.edu.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-29T04:22:26.000Z\",\"updated\":\"2020-04-29T04:25:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@bceln\",\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"hannover\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@Blackfynn\",\"billingInformation\":{\"address\":\"1218 Chestnut Street, 8th Floor\",\"organization\":\"Blackfynn Inc.\",\"department\":null,\"postCode\":\"19107\",\"state\":\"US-PA\",\"country\":\"US\",\"city\":\"Philadelphia\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@britta\",\"billingInformation\":{\"address\":\"hannover street\",\"organization\":\"Datacite\",\"department\":\"bussiness\",\"postCode\":\"4445464\",\"state\":\"hannover\",\"country\":\"AL\",\"city\":\"hannover\"},\"rorId\":\"https://ror.org/0304hq317\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":439,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":135},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":125},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":245},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":170},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":9},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":432},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -106,8 +106,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:11.498Z", - "time": 121, + "startedDateTime": "2020-05-04T16:41:35.285Z", + "time": 127, "timings": { "blocked": -1, "connect": -1, @@ -115,7 +115,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 127 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefixes_435827572/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefixes_435827572/recording.har index fb5fa23c0..d51320b6a 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefixes_435827572/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-prefixes_435827572/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/visiting prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -75,11 +75,11 @@ "url": "https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 30811, + "bodySize": 28695, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30811, - "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1978},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":289},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":300},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":283},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":165},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":158},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":131},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":129},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":120},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":93},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":64},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":55},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":54},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":53},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":51},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":38}],\"clients\":[{\"id\":\"cdl.ual\",\"title\":\"University of Alberta Libraries\",\"count\":13},{\"id\":\"tib.kisti\",\"title\":\"Korea Institute of Science and Technology Information\",\"count\":9},{\"id\":\"bl.imperial\",\"title\":\"Imperial College London\",\"count\":6},{\"id\":\"cdl.ucsd\",\"title\":\"UCSD\",\"count\":5},{\"id\":\"inist.ifremer\",\"title\":\"Institut Français de Recherche pour l'Exploitation de la Mer\",\"count\":5},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":4},{\"id\":\"ands.centre-8\",\"title\":\"CSIRO\",\"count\":3},{\"id\":\"ands.centre14\",\"title\":\"Australian National Data Service\",\"count\":3},{\"id\":\"bibtag.test\",\"title\":\"Workshop Test Account\",\"count\":3},{\"id\":\"bl.lincoln\",\"title\":\"University of Lincoln\",\"count\":3},{\"id\":\"bl.old-api\",\"title\":\"BL's DOI service prototype\",\"count\":3},{\"id\":\"dk.dc\",\"title\":\"DTIC Test Datacenter\",\"count\":3},{\"id\":\"nrct.db1\",\"title\":\"NRCT Data Center\",\"count\":3},{\"id\":\"purdue.ezid\",\"title\":\"PURDUE EZID\",\"count\":3},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" + "size": 28695, + "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1988},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":288},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -98,8 +98,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:12.794Z", - "time": 276, + "startedDateTime": "2020-05-04T16:41:36.997Z", + "time": 190, "timings": { "blocked": -1, "connect": -1, @@ -107,7 +107,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 276 + "wait": 190 } } ], diff --git a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-repositories_601244364/recording.har b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-repositories_601244364/recording.har index 90f37537a..5212065a1 100644 --- a/recordings/Acceptance-staff_admin-admin_3109760735/visiting-repositories_601244364/recording.har +++ b/recordings/Acceptance-staff_admin-admin_3109760735/visiting-repositories_601244364/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | admin/visiting repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -87,11 +87,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 137104, + "bodySize": 130833, "content": { "mimeType": "application/json; charset=utf-8", - "size": 137104, - "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"## I am a repository\\n\\n- one repo\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"salesforceId\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-03-12T10:05:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"globusUuid\":\"19264436-a996-4aca-ad79-ffba44e02b6c\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"salesforceId\":null,\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"globusUuid\":null,\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"salesforceId\":null,\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"globusUuid\":null,\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"salesforceId\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-03-24T09:39:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"globusUuid\":null,\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"salesforceId\":null,\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ethz.test\",\"type\":\"clients\"},{\"id\":\"ethz.e-coll\",\"type\":\"clients\"},{\"id\":\"ethz.seals\",\"type\":\"clients\"},{\"id\":\"ethz.dodis\",\"type\":\"clients\"},{\"id\":\"ethz.ar\",\"type\":\"clients\"},{\"id\":\"ethz.uzh-al\",\"type\":\"clients\"},{\"id\":\"ethz.corssa\",\"type\":\"clients\"},{\"id\":\"ethz.jroi\",\"type\":\"clients\"},{\"id\":\"ethz.unibas\",\"type\":\"clients\"},{\"id\":\"ethz.wgms\",\"type\":\"clients\"},{\"id\":\"ethz.ids-lu\",\"type\":\"clients\"},{\"id\":\"ethz.lives\",\"type\":\"clients\"},{\"id\":\"ethz.epfl\",\"type\":\"clients\"},{\"id\":\"ethz.da-rd\",\"type\":\"clients\"},{\"id\":\"ethz.e-manus\",\"type\":\"clients\"},{\"id\":\"ethz.ubasojs\",\"type\":\"clients\"},{\"id\":\"ethz.ma\",\"type\":\"clients\"},{\"id\":\"ethz.bopalt\",\"type\":\"clients\"},{\"id\":\"ethz.zora\",\"type\":\"clients\"},{\"id\":\"ethz.ecodices\",\"type\":\"clients\"},{\"id\":\"ethz.sed\",\"type\":\"clients\"},{\"id\":\"ethz.e-rara\",\"type\":\"clients\"},{\"id\":\"ethz.li\",\"type\":\"clients\"},{\"id\":\"ethz.dmm\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ad\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ba\",\"type\":\"clients\"},{\"id\":\"ethz.smif\",\"type\":\"clients\"},{\"id\":\"ethz.lo\",\"type\":\"clients\"},{\"id\":\"ethz.fsw\",\"type\":\"clients\"},{\"id\":\"ethz.itis\",\"type\":\"clients\"},{\"id\":\"ethz.infoclio\",\"type\":\"clients\"},{\"id\":\"ethz.boris\",\"type\":\"clients\"},{\"id\":\"ethz.bopitw\",\"type\":\"clients\"},{\"id\":\"ethz.wsl\",\"type\":\"clients\"},{\"id\":\"ethz.iumsppub\",\"type\":\"clients\"},{\"id\":\"ethz.iumspdat\",\"type\":\"clients\"},{\"id\":\"ethz.rfre\",\"type\":\"clients\"},{\"id\":\"ethz.phsg\",\"type\":\"clients\"},{\"id\":\"ethz.bopjemr\",\"type\":\"clients\"},{\"id\":\"ethz.permos\",\"type\":\"clients\"},{\"id\":\"ethz.epics3\",\"type\":\"clients\"},{\"id\":\"ethz.inblog\",\"type\":\"clients\"},{\"id\":\"ethz.hopepsy\",\"type\":\"clients\"},{\"id\":\"ethz.zhaw\",\"type\":\"clients\"},{\"id\":\"ethz.ms\",\"type\":\"clients\"},{\"id\":\"ethz.ubemo\",\"type\":\"clients\"},{\"id\":\"ethz.epics-bs\",\"type\":\"clients\"},{\"id\":\"ethz.hopesui\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ki\",\"type\":\"clients\"},{\"id\":\"ethz.epics-st\",\"type\":\"clients\"},{\"id\":\"ethz.soz\",\"type\":\"clients\"},{\"id\":\"ethz.wsllfi\",\"type\":\"clients\"},{\"id\":\"ethz.bopinfo\",\"type\":\"clients\"},{\"id\":\"ethz.dodisint\",\"type\":\"clients\"},{\"id\":\"ethz.hes\",\"type\":\"clients\"},{\"id\":\"ethz.marvel\",\"type\":\"clients\"},{\"id\":\"ethz.historiaiuris\",\"type\":\"clients\"},{\"id\":\"ethz.agroscope\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3929\",\"type\":\"prefixes\"},{\"id\":\"10.3930\",\"type\":\"prefixes\"},{\"id\":\"10.3931\",\"type\":\"prefixes\"},{\"id\":\"10.3932\",\"type\":\"prefixes\"},{\"id\":\"10.3933\",\"type\":\"prefixes\"},{\"id\":\"10.5075\",\"type\":\"prefixes\"},{\"id\":\"10.5076\",\"type\":\"prefixes\"},{\"id\":\"10.5078\",\"type\":\"prefixes\"},{\"id\":\"10.5079\",\"type\":\"prefixes\"},{\"id\":\"10.5166\",\"type\":\"prefixes\"},{\"id\":\"10.5167\",\"type\":\"prefixes\"},{\"id\":\"10.5169\",\"type\":\"prefixes\"},{\"id\":\"10.5170\",\"type\":\"prefixes\"},{\"id\":\"10.5448\",\"type\":\"prefixes\"},{\"id\":\"10.5449\",\"type\":\"prefixes\"},{\"id\":\"10.5450\",\"type\":\"prefixes\"},{\"id\":\"10.5451\",\"type\":\"prefixes\"},{\"id\":\"10.5452\",\"type\":\"prefixes\"},{\"id\":\"10.5168\",\"type\":\"prefixes\"},{\"id\":\"10.5903\",\"type\":\"prefixes\"},{\"id\":\"10.5904\",\"type\":\"prefixes\"},{\"id\":\"10.5905\",\"type\":\"prefixes\"},{\"id\":\"10.5906\",\"type\":\"prefixes\"},{\"id\":\"10.5907\",\"type\":\"prefixes\"},{\"id\":\"10.12682\",\"type\":\"prefixes\"},{\"id\":\"10.12683\",\"type\":\"prefixes\"},{\"id\":\"10.12684\",\"type\":\"prefixes\"},{\"id\":\"10.12685\",\"type\":\"prefixes\"},{\"id\":\"10.12686\",\"type\":\"prefixes\"},{\"id\":\"10.7890\",\"type\":\"prefixes\"},{\"id\":\"10.7891\",\"type\":\"prefixes\"},{\"id\":\"10.7894\",\"type\":\"prefixes\"},{\"id\":\"10.7892\",\"type\":\"prefixes\"},{\"id\":\"10.13097\",\"type\":\"prefixes\"},{\"id\":\"10.13096\",\"type\":\"prefixes\"},{\"id\":\"10.13100\",\"type\":\"prefixes\"},{\"id\":\"10.13099\",\"type\":\"prefixes\"},{\"id\":\"10.13098\",\"type\":\"prefixes\"},{\"id\":\"10.13093\",\"type\":\"prefixes\"},{\"id\":\"10.13092\",\"type\":\"prefixes\"},{\"id\":\"10.13095\",\"type\":\"prefixes\"},{\"id\":\"10.13094\",\"type\":\"prefixes\"},{\"id\":\"10.13091\",\"type\":\"prefixes\"},{\"id\":\"10.16909\",\"type\":\"prefixes\"},{\"id\":\"10.16908\",\"type\":\"prefixes\"},{\"id\":\"10.16907\",\"type\":\"prefixes\"},{\"id\":\"10.16906\",\"type\":\"prefixes\"},{\"id\":\"10.16905\",\"type\":\"prefixes\"},{\"id\":\"10.16904\",\"type\":\"prefixes\"},{\"id\":\"10.16903\",\"type\":\"prefixes\"},{\"id\":\"10.16902\",\"type\":\"prefixes\"},{\"id\":\"10.16911\",\"type\":\"prefixes\"},{\"id\":\"10.16910\",\"type\":\"prefixes\"},{\"id\":\"10.18749\",\"type\":\"prefixes\"},{\"id\":\"10.18748\",\"type\":\"prefixes\"},{\"id\":\"10.18747\",\"type\":\"prefixes\"},{\"id\":\"10.18752\",\"type\":\"prefixes\"},{\"id\":\"10.18753\",\"type\":\"prefixes\"},{\"id\":\"10.18750\",\"type\":\"prefixes\"},{\"id\":\"10.18751\",\"type\":\"prefixes\"},{\"id\":\"10.18756\",\"type\":\"prefixes\"},{\"id\":\"10.18754\",\"type\":\"prefixes\"},{\"id\":\"10.18755\",\"type\":\"prefixes\"},{\"id\":\"10.21258\",\"type\":\"prefixes\"},{\"id\":\"10.21257\",\"type\":\"prefixes\"},{\"id\":\"10.21256\",\"type\":\"prefixes\"},{\"id\":\"10.21255\",\"type\":\"prefixes\"},{\"id\":\"10.21259\",\"type\":\"prefixes\"},{\"id\":\"10.21260\",\"type\":\"prefixes\"},{\"id\":\"10.21261\",\"type\":\"prefixes\"},{\"id\":\"10.21263\",\"type\":\"prefixes\"},{\"id\":\"10.21262\",\"type\":\"prefixes\"},{\"id\":\"10.21264\",\"type\":\"prefixes\"},{\"id\":\"10.22019\",\"type\":\"prefixes\"},{\"id\":\"10.22018\",\"type\":\"prefixes\"},{\"id\":\"10.22013\",\"type\":\"prefixes\"},{\"id\":\"10.22012\",\"type\":\"prefixes\"},{\"id\":\"10.22015\",\"type\":\"prefixes\"},{\"id\":\"10.22014\",\"type\":\"prefixes\"},{\"id\":\"10.22016\",\"type\":\"prefixes\"},{\"id\":\"10.22009\",\"type\":\"prefixes\"},{\"id\":\"10.26039\",\"type\":\"prefixes\"},{\"id\":\"10.24435\",\"type\":\"prefixes\"},{\"id\":\"10.24434\",\"type\":\"prefixes\"},{\"id\":\"10.24437\",\"type\":\"prefixes\"},{\"id\":\"10.24439\",\"type\":\"prefixes\"},{\"id\":\"10.24442\",\"type\":\"prefixes\"},{\"id\":\"10.24445\",\"type\":\"prefixes\"},{\"id\":\"10.24452\",\"type\":\"prefixes\"},{\"id\":\"10.26032\",\"type\":\"prefixes\"},{\"id\":\"10.26035\",\"type\":\"prefixes\"},{\"id\":\"10.26037\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@andsAttwitter\",\"billingInformation\":{\"address\":\"100 Sir Monash Drive\",\"organization\":\"\",\"department\":\"\",\"postCode\":\"3145\",\"state\":\"AU-VIC\",\"country\":\"AU\",\"city\":\"Caulfield East\"},\"rorId\":\"https://ror.org/038sjwq14\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":\"Asmussens Alle, Building 305\",\"organization\":null,\"department\":null,\"postCode\":\"2800\",\"state\":null,\"country\":\"DK\",\"city\":\"Kgs. Lyngby\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@britishLibraryd\",\"billingInformation\":{\"address\":\"\",\"organization\":null,\"department\":null,\"postCode\":\"\",\"state\":null,\"country\":\"GB\",\"city\":\"\"},\"rorId\":\"https://ror.org/05dhe8b71\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":\"2, Allée du Parc de Brabois\",\"organization\":null,\"department\":null,\"postCode\":\"54500\",\"state\":\"\",\"country\":\"FR\",\"city\":\"Vandoeuve Les Nancy\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@nuiglibrary\",\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/03bea9k73\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@Tweet333\",\"billingInformation\":{\"address\":\"Am Welfengarten 1B\",\"organization\":\"Technische Informationsbibliothek\",\"department\":\"\",\"postCode\":\"30167\",\"state\":null,\"country\":\"DE\",\"city\":\"Hannover\"},\"rorId\":\"https://ror.org/04aj4c181\",\"salesforceId\":null,\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":\"https://ror.org/051dzs374\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2098,\"totalPages\":84,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":183},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":232},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":147},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":119},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":115},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":93},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":59},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":59},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":55},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":53},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":47},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":46},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":43},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":41}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2040},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":68},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":23},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":16},{\"id\":\"other\",\"title\":\"Other\",\"count\":13},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":9},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":16},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":14},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1},{\"id\":\"islandora\",\"title\":\"Islandora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" + "size": 130833, + "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"salesforceId\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-04-24T04:50:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"globusUuid\":\"19264436-a996-4aca-ad79-ffba44e02b6c\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"salesforceId\":null,\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"globusUuid\":null,\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"salesforceId\":null,\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"globusUuid\":null,\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"salesforceId\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-04-28T12:27:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"salesforceId\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"globusUuid\":null,\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"salesforceId\":null,\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@andsAttwitter\",\"billingInformation\":{\"address\":\"100 Sir Monash Drive\",\"organization\":\"\",\"department\":\"\",\"postCode\":\"3145\",\"state\":\"AU-VIC\",\"country\":\"AU\",\"city\":\"Caulfield East\"},\"rorId\":\"https://ror.org/038sjwq14\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":\"Asmussens Alle, Building 305\",\"organization\":null,\"department\":null,\"postCode\":\"2800\",\"state\":null,\"country\":\"DK\",\"city\":\"Kgs. Lyngby\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@britishLibraryd\",\"billingInformation\":{\"address\":\"\",\"organization\":null,\"department\":null,\"postCode\":\"\",\"state\":null,\"country\":\"GB\",\"city\":\"\"},\"rorId\":\"https://ror.org/05dhe8b71\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":\"2, Allée du Parc de Brabois\",\"organization\":null,\"department\":null,\"postCode\":\"54500\",\"state\":\"\",\"country\":\"FR\",\"city\":\"Vandoeuve Les Nancy\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@nuiglibrary\",\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/03bea9k73\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@Tweet333\",\"billingInformation\":{\"address\":\"Am Welfengarten 1B\",\"organization\":\"Technische Informationsbibliothek\",\"department\":\"\",\"postCode\":\"30167\",\"state\":null,\"country\":\"DE\",\"city\":\"Hannover\"},\"rorId\":\"https://ror.org/04aj4c181\",\"salesforceId\":null,\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":\"https://ror.org/051dzs374\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2120,\"totalPages\":85,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":205},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":null,\"count\":252},{\"id\":\"cdl\",\"title\":null,\"count\":232},{\"id\":\"bl\",\"title\":null,\"count\":147},{\"id\":\"inist\",\"title\":null,\"count\":120},{\"id\":\"ands\",\"title\":null,\"count\":115},{\"id\":\"gesis\",\"title\":null,\"count\":93},{\"id\":\"datacite\",\"title\":null,\"count\":62},{\"id\":\"ethz\",\"title\":null,\"count\":59},{\"id\":\"mtakik\",\"title\":null,\"count\":59},{\"id\":\"osti\",\"title\":null,\"count\":55}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2062},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":71},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":24},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":18},{\"id\":\"other\",\"title\":\"Other\",\"count\":14},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":10},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":17},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":17},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -110,8 +110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:12.136Z", - "time": 196, + "startedDateTime": "2020-05-04T16:41:36.097Z", + "time": 144, "timings": { "blocked": -1, "connect": -1, @@ -119,7 +119,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 196 + "wait": 144 } } ], diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har deleted file mode 100644 index cd7ce52dd..000000000 --- a/recordings/Acceptance-staff_admin-doi_1134964664/creating-a-new-DOI-for-repository-DataCite-Test-renders_4230827356/recording.har +++ /dev/null @@ -1,398 +0,0 @@ -{ - "log": { - "_recordingName": "Acceptance | staff_admin | doi/creating a new DOI for repository DataCite Test renders", - "browser": { - "name": "Chrome", - "version": "81.0.4044.122" - }, - "creator": { - "comment": "persister:rest", - "name": "Polly.JS", - "version": "4.0.4" - }, - "entries": [ - { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 696, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" - }, - "response": { - "bodySize": 6086, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:20.811Z", - "time": 96, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 96 - } - }, - { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 665, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" - }, - "response": { - "bodySize": 1782, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:21.254Z", - "time": 110, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 110 - } - }, - { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 728, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" - }, - "response": { - "bodySize": 1416, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:21.254Z", - "time": 162, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 162 - } - }, - { - "_id": "4d1cf57852130a759c653ec28a941a86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 669, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" - }, - "response": { - "bodySize": 457, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:21.432Z", - "time": 74, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 74 - } - }, - { - "_id": "1f2ed9b690e18a122e621204614c336f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 645, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "prefix", - "value": "10.0330" - } - ], - "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" - }, - "response": { - "bodySize": 30, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 30, - "text": "{\"dois\":[\"10.0330/ps02-x552\"]}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:21.432Z", - "time": 94, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 94 - } - }, - { - "_id": "fb706a7af6b470f496b7904bf9c6a2b7", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 685, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [ - { - "name": "id", - "value": "model.prefix/ps02-x552" - } - ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fps02-x552" - }, - "response": { - "bodySize": 136, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fps02-x552\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:21.538Z", - "time": 116, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 116 - } - } - ], - "pages": [], - "version": "1.2" - } -} diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har index dad5af161..40d4be8e2 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/modify-DOI-form-for-repository-DataCite-Test_2670435897/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | doi/modify DOI form for repository DataCite Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8663, + "bodySize": 8723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8663, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8723, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.513Z", - "time": 173, + "startedDateTime": "2020-05-04T16:41:43.238Z", + "time": 135, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 173 + "wait": 135 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8663, + "bodySize": 8723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8663, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8723, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.890Z", - "time": 674, + "startedDateTime": "2020-05-04T16:41:43.558Z", + "time": 194, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 674 + "wait": 194 } }, { @@ -163,11 +163,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5401, + "bodySize": 5441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5401, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5441, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.893Z", - "time": 571, + "startedDateTime": "2020-05-04T16:41:43.565Z", + "time": 138, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 571 + "wait": 138 } }, { @@ -223,11 +223,11 @@ "url": "https://api.test.datacite.org/dois/validate" }, "response": { - "bodySize": 2923, + "bodySize": 2832, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2923, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifierType\":\"DOI\",\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\"}],\"creators\":[{\"nameType\":\"Personal\",\"name\":\"Buys, Matt\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[]},{\"nameType\":\"Personal\",\"name\":\"Dasler, Robin\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"name\":\"Fenner, Martin\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"PIDs for instruments: a way forward\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\"},{\"subject\":\"rda\"},{\"subject\":\"featured\"}],\"contributors\":[{\"nameType\":\"Personal\",\"name\":\"Garza, Kristian\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}],\"contributorType\":\"DataCollector\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\",\"schemaOrg\":\"CreativeWork\",\"citeproc\":\"article\",\"bibtex\":\"misc\",\"ris\":\"GEN\"},\"relatedIdentifiers\":[{\"relatedIdentifier\":\"10.5438/0000-00ss\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"IsPartOf\",\"resourceTypeGeneral\":\"InteractiveResource\"},{\"relatedIdentifier\":\"10.7914/sn/sh\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"HasMetadata\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"funderName\":\"American Red Cross\",\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":null,\"registered\":null,\"published\":\"2020\",\"updated\":null},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}}" + "size": 2832, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"name\":\"Buys, Matt\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[]},{\"nameType\":\"Personal\",\"name\":\"Dasler, Robin\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"nameType\":\"Personal\",\"name\":\"Fenner, Martin\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"PIDs for instruments: a way forward\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\"},{\"subject\":\"rda\"},{\"subject\":\"featured\"}],\"contributors\":[{\"nameType\":\"Personal\",\"name\":\"Garza, Kristian\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}],\"contributorType\":\"DataCollector\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\",\"schemaOrg\":\"CreativeWork\",\"citeproc\":\"article\",\"bibtex\":\"misc\",\"ris\":\"GEN\"},\"relatedIdentifiers\":[{\"relatedIdentifier\":\"10.5438/0000-00ss\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"IsPartOf\",\"resourceTypeGeneral\":\"InteractiveResource\"},{\"relatedIdentifier\":\"10.7914/sn/sh\",\"relatedIdentifierType\":\"DOI\",\"relationType\":\"HasMetadata\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"funderName\":\"American Red Cross\",\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":null,\"registered\":null,\"published\":\"2020\",\"updated\":null},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}}" }, "cookies": [], "headers": [ @@ -246,8 +246,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.893Z", - "time": 677, + "startedDateTime": "2020-05-04T16:41:43.565Z", + "time": 212, "timings": { "blocked": -1, "connect": -1, @@ -255,7 +255,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 677 + "wait": 212 } }, { @@ -282,11 +282,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -305,8 +305,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:20.506Z", - "time": 141, + "startedDateTime": "2020-05-04T16:41:43.719Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -314,7 +314,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 141 + "wait": 96 } } ], diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/new-DOI-form-for-repository-Test_2069099802/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/new-DOI-form-for-repository-Test_2069099802/recording.har index 3ac8b4727..797fd7cca 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/new-DOI-form-for-repository-Test_2069099802/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/new-DOI-form-for-repository-Test_2069099802/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | doi/new DOI form for repository Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:17.429Z", - "time": 102, + "startedDateTime": "2020-05-04T16:41:41.213Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 96 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:18.125Z", - "time": 136, + "startedDateTime": "2020-05-04T16:41:41.870Z", + "time": 147, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 147 } }, { @@ -173,11 +173,11 @@ "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1416, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:18.125Z", - "time": 163, + "startedDateTime": "2020-05-04T16:41:41.870Z", + "time": 152, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 152 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/ya9d-xx69\"]}" + "text": "{\"dois\":[\"10.0330/f033-4256\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:18.311Z", - "time": 91, + "startedDateTime": "2020-05-04T16:41:42.050Z", + "time": 73, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 73 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:18.311Z", - "time": 118, + "startedDateTime": "2020-05-04T16:41:42.050Z", + "time": 100, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 100 } }, { - "_id": "4191d47019bd14ddd2fb56b0f7e1a0df", + "_id": "6042bf42cf407f0af27ba9646181168c", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/ya9d-xx69" + "value": "model.prefix/f033-4256" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fya9d-xx69" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Ff033-4256" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fya9d-xx69\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Ff033-4256\"}}" }, "cookies": [], "headers": [ @@ -379,8 +379,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:18.420Z", - "time": 131, + "startedDateTime": "2020-05-04T16:41:42.142Z", + "time": 123, "timings": { "blocked": -1, "connect": -1, @@ -388,7 +388,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 131 + "wait": 123 } } ], diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har index c994a9942..d0fe78503 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/update-draft-doi_1508057167/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | doi/update draft doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.0330%2F3nym-s568?include=client" }, "response": { - "bodySize": 2665, + "bodySize": 2756, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2665, - "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 2756, + "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDxzaXplcy8+CiAgPGZvcm1hdHMvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:21.785Z", - "time": 163, + "startedDateTime": "2020-05-04T16:41:44.039Z", + "time": 155, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 155 } }, { @@ -104,11 +104,11 @@ "url": "https://api.test.datacite.org/dois/10.0330%2F3nym-s568?include=client" }, "response": { - "bodySize": 2665, + "bodySize": 2756, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2665, - "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 2756, + "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDxzaXplcy8+CiAgPGZvcm1hdHMvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:22.264Z", - "time": 178, + "startedDateTime": "2020-05-04T16:41:44.652Z", + "time": 173, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 178 + "wait": 173 } }, { @@ -163,11 +163,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5401, + "bodySize": 5441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5401, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5441, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:22.265Z", - "time": 131, + "startedDateTime": "2020-05-04T16:41:44.654Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 131 + "wait": 118 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:22.411Z", - "time": 84, + "startedDateTime": "2020-05-04T16:41:44.802Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -254,15 +254,15 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 104 } }, { - "_id": "ad0daf7cd8e374601fb64684e92448a3", + "_id": "25bb371a0a164acf9fa6857575b70ecb", "_order": 0, "cache": {}, "request": { - "bodySize": 732, + "bodySize": 731, "cookies": [], "headers": [ { @@ -280,17 +280,17 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"confirmDoi\":null,\"url\":\"http://datacite940\",\"creators\":[{\"name\":\"\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"landingPage\":null,\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"edit\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"confirmDoi\":null,\"url\":\"http://datacite18\",\"creators\":[{\"name\":\"\",\"givenName\":null,\"familyName\":null,\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"landingPage\":null,\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"edit\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/dois/10.0330%2F3nym-s568" }, "response": { - "bodySize": 1998, + "bodySize": 2055, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1998, - "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite940\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:39:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 2055, + "text": "{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"prefix\":\"10.0330\",\"suffix\":\"3nym-s568\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":\"Personal\",\"nameIdentifiers\":[],\"name\":\"\",\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8zTllNLVM1Njg8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZSBuYW1lVHlwZT0iUGVyc29uYWwiLz4KICAgIDwvY3JlYXRvcj4KICA8L2NyZWF0b3JzPgogIDx0aXRsZXMvPgogIDxwdWJsaXNoZXIvPgogIDxwdWJsaWNhdGlvblllYXIvPgogIDxzaXplcy8+CiAgPGZvcm1hdHMvPgogIDx2ZXJzaW9uLz4KPC9yZXNvdXJjZT4K\",\"url\":\"http://datacite18\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:41:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/3nym-s568\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" }, "cookies": [], "headers": [ @@ -309,8 +309,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-05-03T14:39:00.619Z", - "time": 225, + "startedDateTime": "2020-05-04T16:41:45.156Z", + "time": 250, "timings": { "blocked": -1, "connect": -1, @@ -318,7 +318,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 225 + "wait": 250 } } ], diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har index b9d677f73..ce73458a9 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/upload-DOI-form-for-repository-DataCite-Test_3845662214/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | doi/upload DOI form for repository DataCite Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:18.679Z", - "time": 118, + "startedDateTime": "2020-05-04T16:41:42.433Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 98 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 665, + "headersSize": 728, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 1782, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +137,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.010Z", - "time": 164, + "startedDateTime": "2020-05-04T16:41:42.729Z", + "time": 114, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +146,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 164 + "wait": 114 } }, { - "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -151,33 +166,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 728, + "headersSize": 665, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "25" - } - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "sort", - "value": "name" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1416, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1416, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -196,8 +196,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.010Z", - "time": 167, + "startedDateTime": "2020-05-04T16:41:42.729Z", + "time": 164, "timings": { "blocked": -1, "connect": -1, @@ -205,7 +205,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 167 + "wait": 164 } }, { @@ -237,7 +237,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 30, - "text": "{\"dois\":[\"10.0330/24f5-e343\"]}" + "text": "{\"dois\":[\"10.0330/pzrs-ay39\"]}" }, "cookies": [], "headers": [ @@ -256,8 +256,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.202Z", - "time": 64, + "startedDateTime": "2020-05-04T16:41:42.887Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -265,7 +265,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 64 + "wait": 82 } }, { @@ -315,8 +315,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.202Z", - "time": 87, + "startedDateTime": "2020-05-04T16:41:42.887Z", + "time": 106, "timings": { "blocked": -1, "connect": -1, @@ -324,11 +324,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 87 + "wait": 106 } }, { - "_id": "f00b2241decf72bcefa2ea429db05810", + "_id": "ce1b1ac5c9821ead554f8b4d3afbbd7e", "_order": 0, "cache": {}, "request": { @@ -350,17 +350,17 @@ "queryString": [ { "name": "id", - "value": "model.prefix/24f5-e343" + "value": "model.prefix/pzrs-ay39" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F24f5-e343" + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fpzrs-ay39" }, "response": { "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F24f5-e343\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fpzrs-ay39\"}}" }, "cookies": [], "headers": [ @@ -379,7 +379,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:19.282Z", + "startedDateTime": "2020-05-04T16:41:42.987Z", "time": 112, "timings": { "blocked": -1, diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/visiting-dois_3774702605/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/visiting-dois_3774702605/recording.har index 68d2133a3..566219f17 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/visiting-dois_3774702605/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | doi/visiting dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -119,11 +119,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 86256, + "bodySize": 81415, "content": { "mimeType": "application/json; charset=utf-8", - "size": 86256, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite526\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T12:24:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:18:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813559\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:41.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813559\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813559\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813559\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813559\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:40.000Z\",\"registered\":\"2020-04-23T07:10:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842813\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842813\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842813\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842813\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842813\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:37.000Z\",\"registered\":\"2020-04-23T07:10:38.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842811\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813557\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:34.000Z\",\"registered\":\"2020-04-23T07:10:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:36.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842811\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842811\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842811\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842811\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813557\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813557\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813557\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813557\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:31.000Z\",\"registered\":\"2020-04-23T07:10:33.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813555\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:28.000Z\",\"registered\":\"2020-04-23T07:10:29.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813555\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813555\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813555\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813555\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:24.000Z\",\"registered\":\"2020-04-23T07:10:24.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842809.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842809.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"new article title 0\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"Aerospace Engineering\"},{\"subject\":\"Computer Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842809\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/new_article_title_0/6842809/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:25.000Z\",\"registered\":\"2020-04-23T07:10:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842807\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:23.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842807\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842807\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842807\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Wehner, Gale\",\"nameType\":\"Personal\",\"givenName\":\"Gale\",\"familyName\":\"Wehner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Genetic Engineering\"},{\"subject\":\"Computer Engineering\"},{\"subject\":\"90102 Aerospace Materials\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842807\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:22.000Z\",\"registered\":\"2020-04-23T07:10:22.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813549.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"90103 Aerospace Structures\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.c.2813549\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/Sample_Colection_resulted_from_automation_tests_B/2813549/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:19.000Z\",\"registered\":\"2020-04-23T07:10:20.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803.v1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803.v1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[{\"relationType\":\"IsIdenticalTo\",\"relatedIdentifier\":\"10.0166/fk2.stagefigshare.6842803\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.6842803\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.6842803\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.6842803\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sample Article Title\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Agricultural Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"},{\"subject\":\"Software Engineering\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Online resource\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"0 Bytes\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Sample article description.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/articles/Sample_Article_Title/6842803\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:17.000Z\",\"registered\":\"2020-04-23T07:10:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.0166/fk2.stagefigshare.c.2813547\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0166/fk2.stagefigshare.c.2813547\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0166/fk2.stagefigshare.c.2813547\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Dummy, Willy\",\"nameType\":\"Personal\",\"givenName\":\"Willy\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dummy, Jilly\",\"nameType\":\"Personal\",\"givenName\":\"Jilly\",\"familyName\":\"Dummy\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Daniel Dud Thu 1\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Sample Colection resulted from automation tests B\"}],\"publisher\":\"Sample University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Nuclear Engineering\"},{\"subject\":\"Mechanical Engineering\"},{\"subject\":\"90101 Aerodynamics (excl. Hypersonic Aerodynamics)\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020-04-23\",\"dateType\":\"Created\"},{\"date\":\"2020-04-23\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Collection\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"This is a sample Description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://sample_university.figsh.com/collections/_/2813547\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":false,\"state\":\"registered\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:10:15.000Z\",\"registered\":\"2020-04-23T07:10:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:10:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"figshare.dud\",\"type\":\"clients\"}}}},{\"id\":\"10.5258/soton/1560\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5258/soton/1560\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5258/soton/1560/\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Binney, Heather\",\"nameType\":\"Personal\",\"givenName\":\"Heather\",\"familyName\":\"Binney\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"en-us\",\"title\":\"Title changed Vegetation of Eurasia from the last glacial maximum to the present: the pollen data\"}],\"publisher\":\"University of Southampton\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"1900/2013\",\"dateType\":\"Collected\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en-us\",\"description\":\"This dataset details the pollen data used in the production of the biome vegetation maps shown in the published paper. The results of the biomization results of the pollen data is included.Adding in more information as required by testing\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://eprints.soton.ac.uk/1559/test\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://eprints.soton.ac.uk/1559/test\",\"error\":\"\",\"status\":404,\"checked\":\"2020-04-05 05:01:40\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"http://eprints.soton.ac.uk/1559/test\"],\"redirectCount\":1,\"downloadLatency\":41},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-12T16:59:12.000Z\",\"registered\":\"2019-02-12T16:59:13.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:02:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.soton\",\"type\":\"clients\"}}}},{\"id\":\"10.24378/exe.7\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24378/exe.7\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24378/exe.7\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Desair, Tom\",\"nameType\":\"Personal\",\"givenName\":\"Tom\",\"familyName\":\"Desair\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Atmire Test Submission\"}],\"publisher\":\"Test\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]},{\"name\":\"Open Research Exeter (ORE)\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Other\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Test\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://oredev03.exeter.ac.uk/repository/handle/10871/30993\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://oredev03.exeter.ac.uk/repository/handle/10871/30993\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 05:01:24\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html;charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":\"10.1038/nature09174\",\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":2684},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-02-26T15:50:28.000Z\",\"registered\":\"2018-03-01T16:00:40.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.exeter\",\"type\":\"clients\"}}}},{\"id\":\"10.14288/1.0043659\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14288/1.0043659\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14288/1.0043659\",\"identifierType\":\"DOI\"}],\"creators\":[],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"error\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://api.datacite.org/dois/10.14288/1.0043659\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://api.datacite.org/dois/10.14288/1.0043659\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 05:01:23\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"application/json; charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":1783},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-18T13:48:46.000Z\",\"registered\":\"2018-12-18T13:48:55.000Z\",\"published\":\"\",\"updated\":\"2020-04-23T07:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cisti.ubc\",\"type\":\"clients\"}}}},{\"id\":\"10.80066/1nfy-1g91\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80066/1nfy-1g91\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80066/1nfy-1g91\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"CNRST\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Formation Test\"}],\"publisher\":\"IMIST\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceTypeGeneral\":\"DataPaper\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 05:01:22\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":837},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-29T11:41:51.000Z\",\"registered\":\"2019-11-29T12:17:34.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cnrst.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21338/2019.00001\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21338/2019.00001\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21338/2019.00001\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test dataset\"}],\"publisher\":\"NIRD Storage\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Natural sciences\"},{\"subject\":\"Earth science\"},{\"subject\":\"Environmental science\"}],\"contributors\":[{\"name\":\"Hasan, Adil\",\"nameType\":\"Personal\",\"givenName\":\"Adil\",\"familyName\":\"Hasan\",\"contributorType\":\"Other\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2020-01-17\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Simulation, Raw\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://co2datashare.org/dataset/sleipner-4d-seismic-dataset\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://co2datashare.org/dataset/sleipner-4d-seismic-dataset\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 05:01:22\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":967},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-17T14:19:20.000Z\",\"registered\":\"2020-01-17T14:19:21.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:02:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bibsys.uninett\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite808\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T05:01:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"figshare.dud\",\"type\":\"clients\",\"attributes\":{\"name\":\"figshare DUD datacenter\",\"symbol\":\"FIGSHARE.DUD\",\"year\":2016,\"contactEmail\":\"danielduduta@figshare.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"figsh.com,dhs-publicaccess.st.dhs.gov,figsh.us,figshare.us\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2016-07-20T08:29:35.000Z\",\"updated\":\"2019-11-13T13:51:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"figshare\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.soton\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Southampton\",\"symbol\":\"BL.SOTON\",\"year\":2012,\"contactEmail\":\"I.A.Stark@soton.ac.uk\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"ePrints Soton is the University's Research Repository. It contains journal articles, books, PhD theses, conference papers, data, reports, working papers, art exhibitions and more. Where possible, journal articles and conference proceedings are uploaded into ePrints and made open access.\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"soton.ac.uk,worldpop.org.uk\",\"re3data\":\"https://doi.org/10.17616/R3H05B\",\"opendoar\":null,\"issn\":null,\"url\":\"https://eprints.soton.ac.uk/\",\"salesforceId\":null,\"created\":\"2012-10-03T16:00:24.000Z\",\"updated\":\"2018-11-24T18:40:59.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.exeter\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Exeter\",\"symbol\":\"BL.EXETER\",\"year\":2016,\"contactEmail\":\"P.Liebetrau@exeter.ac.uk\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"exeter.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-06-22T13:23:03.000Z\",\"updated\":\"2018-08-26T01:30:58.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cisti.ubc\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of British Columbia\",\"symbol\":\"CISTI.UBC\",\"year\":2015,\"contactEmail\":\"eugene.barsky@ubc.ca\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"ubc.ca\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2015-08-04T20:15:03.000Z\",\"updated\":\"2019-01-24T01:24:35.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cisti\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cnrst.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Test IMIST\",\"symbol\":\"CNRST.TEST\",\"year\":2019,\"contactEmail\":\"ayssi@imist.ma\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"language\":[\"fr\"],\"clientType\":\"periodical\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://revues.imist.ma/index.php?journal=Formation2018imist\",\"salesforceId\":null,\"created\":\"2019-11-29T11:12:15.000Z\",\"updated\":\"2019-12-10T10:20:02.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cnrst\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bibsys.uninett\",\"type\":\"clients\",\"attributes\":{\"name\":\"UNINETT Sigma AS, Norway\",\"symbol\":\"BIBSYS.UNINETT\",\"year\":2016,\"contactEmail\":\"maria.iozzi@uninett.no\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"norstore.no\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2016-04-20T09:04:56.000Z\",\"updated\":\"2019-11-04T10:58:20.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bibsys\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1336099,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1145128},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":112180},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":78791}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":876597},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":151536},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":94592},{\"id\":\"other\",\"title\":\"Other\",\"count\":72569},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12051},{\"id\":\"software\",\"title\":\"Software\",\"count\":7350},{\"id\":\"image\",\"title\":\"Image\",\"count\":7258},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4509},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":670},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":644},{\"id\":\"service\",\"title\":\"Service\",\"count\":116},{\"id\":\"event\",\"title\":\"Event\",\"count\":88},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":77},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52},{\"id\":\"model\",\"title\":\"Model\",\"count\":39}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":252942},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007650},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":2002},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":2},{\"id\":\"2050\",\"title\":\"2050\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":17},{\"id\":\"2024\",\"title\":\"2024\",\"count\":24},{\"id\":\"2023\",\"title\":\"2023\",\"count\":30},{\"id\":\"2022\",\"title\":\"2022\",\"count\":41},{\"id\":\"2021\",\"title\":\"2021\",\"count\":81},{\"id\":\"2020\",\"title\":\"2020\",\"count\":131327},{\"id\":\"2019\",\"title\":\"2019\",\"count\":340886},{\"id\":\"2018\",\"title\":\"2018\",\"count\":83114},{\"id\":\"2017\",\"title\":\"2017\",\"count\":38031},{\"id\":\"2016\",\"title\":\"2016\",\"count\":34300},{\"id\":\"2015\",\"title\":\"2015\",\"count\":33232},{\"id\":\"2014\",\"title\":\"2014\",\"count\":35329},{\"id\":\"2013\",\"title\":\"2013\",\"count\":105363},{\"id\":\"2012\",\"title\":\"2012\",\"count\":174834},{\"id\":\"2011\",\"title\":\"2011\",\"count\":40726},{\"id\":\"2010\",\"title\":\"2010\",\"count\":19844},{\"id\":\"2009\",\"title\":\"2009\",\"count\":18733},{\"id\":\"2008\",\"title\":\"2008\",\"count\":21207},{\"id\":\"2007\",\"title\":\"2007\",\"count\":15612},{\"id\":\"2006\",\"title\":\"2006\",\"count\":13393},{\"id\":\"2005\",\"title\":\"2005\",\"count\":10482},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14834},{\"id\":\"2003\",\"title\":\"2003\",\"count\":11372},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13503},{\"id\":\"2001\",\"title\":\"2001\",\"count\":9221},{\"id\":\"2000\",\"title\":\"2000\",\"count\":10544},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7398},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5554},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7325},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4227},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3704},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3153},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3198},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2734},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2543},{\"id\":\"1990\",\"title\":\"1990\",\"count\":3026},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1695},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1638},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1825},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1907},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1667},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1464},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1587},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1395},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1191},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4636},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1056},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1010},{\"id\":\"1977\",\"title\":\"1977\",\"count\":934},{\"id\":\"1976\",\"title\":\"1976\",\"count\":885},{\"id\":\"1975\",\"title\":\"1975\",\"count\":827},{\"id\":\"1974\",\"title\":\"1974\",\"count\":886},{\"id\":\"1973\",\"title\":\"1973\",\"count\":756},{\"id\":\"1972\",\"title\":\"1972\",\"count\":712},{\"id\":\"1971\",\"title\":\"1971\",\"count\":702},{\"id\":\"1970\",\"title\":\"1970\",\"count\":589},{\"id\":\"1969\",\"title\":\"1969\",\"count\":652},{\"id\":\"1968\",\"title\":\"1968\",\"count\":509},{\"id\":\"1967\",\"title\":\"1967\",\"count\":734},{\"id\":\"1966\",\"title\":\"1966\",\"count\":546},{\"id\":\"1965\",\"title\":\"1965\",\"count\":559},{\"id\":\"1964\",\"title\":\"1964\",\"count\":506},{\"id\":\"1963\",\"title\":\"1963\",\"count\":434},{\"id\":\"1962\",\"title\":\"1962\",\"count\":466},{\"id\":\"1961\",\"title\":\"1961\",\"count\":385},{\"id\":\"1960\",\"title\":\"1960\",\"count\":354},{\"id\":\"1959\",\"title\":\"1959\",\"count\":326},{\"id\":\"1958\",\"title\":\"1958\",\"count\":347},{\"id\":\"1957\",\"title\":\"1957\",\"count\":360},{\"id\":\"1956\",\"title\":\"1956\",\"count\":283},{\"id\":\"1955\",\"title\":\"1955\",\"count\":259},{\"id\":\"1954\",\"title\":\"1954\",\"count\":414},{\"id\":\"1953\",\"title\":\"1953\",\"count\":215},{\"id\":\"1952\",\"title\":\"1952\",\"count\":194},{\"id\":\"1951\",\"title\":\"1951\",\"count\":259},{\"id\":\"1950\",\"title\":\"1950\",\"count\":207},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":186},{\"id\":\"1947\",\"title\":\"1947\",\"count\":123},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":74},{\"id\":\"1944\",\"title\":\"1944\",\"count\":138},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":67},{\"id\":\"1938\",\"title\":\"1938\",\"count\":129},{\"id\":\"1937\",\"title\":\"1937\",\"count\":78},{\"id\":\"1936\",\"title\":\"1936\",\"count\":118},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":135},{\"id\":\"1933\",\"title\":\"1933\",\"count\":298},{\"id\":\"1932\",\"title\":\"1932\",\"count\":251},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":163},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":250},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":55},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":46},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":179},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":40},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":66},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":62},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":32},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":44},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":26},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":52},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":40},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1792\",\"title\":\"1792\",\"count\":1},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1451\",\"title\":\"1451\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":125218},{\"id\":\"2019\",\"title\":\"2019\",\"count\":279219},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38269},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1658},{\"id\":\"2016\",\"title\":\"2016\",\"count\":129},{\"id\":\"2015\",\"title\":\"2015\",\"count\":72},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803750},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":172887},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":61851},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":40568},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":34769},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27727},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":20315},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":19320},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15109},{\"id\":\"gdcc\",\"title\":\"The Global Dataverse Community Consortium (GDCC)\",\"count\":12041},{\"id\":\"gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":10308},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":9580},{\"id\":\"pitp\",\"title\":\"Perimeter Institute for Theoretical Physics\",\"count\":8382},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":7974}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803750},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":172887},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27564},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":25487},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24798},{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17459},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17295},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15031},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13192},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"gbif.gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":10307},{\"id\":\"gdcc.harvard-test\",\"title\":\"Harvard Dataverse Test Account\",\"count\":9520},{\"id\":\"pitp.pirsa\",\"title\":\"Perimeter Institute\",\"count\":8382}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8379},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/05cc98565\",\"title\":\"Bank of Canada\",\"count\":178},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":98},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":92},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":26},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":25},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":19},{\"id\":\"ror.org/00za53h95\",\"title\":\"Johns Hopkins University\",\"count\":12},{\"id\":\"ror.org/00qnfvz68\",\"title\":\"Open Society Foundations\",\"count\":6},{\"id\":\"ror.org/03zbnzt98\",\"title\":\"Woods Hole Oceanographic Institution\",\"count\":4},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/04d8ztx87\",\"title\":\"Agroscope\",\"count\":3},{\"id\":\"ror.org/05591te55\",\"title\":\"Ludwig Maximilian University of Munich\",\"count\":3}],\"prefixes\":[{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":172887},{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130738},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58818},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56676},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34961},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27564},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20720},{\"id\":\"10.17863\",\"title\":\"10.17863\",\"count\":19592},{\"id\":\"10.1038\",\"title\":\"10.1038\",\"count\":19569},{\"id\":\"10.33520\",\"title\":\"10.33520\",\"count\":19361},{\"id\":\"10.1093\",\"title\":\"10.1093\",\"count\":18334},{\"id\":\"10.3390\",\"title\":\"10.3390\",\"count\":18301}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2891},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":713}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1045354},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":9331},{\"id\":\"4.3\",\"title\":\"Schema 4.3\",\"count\":13},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":12},{\"id\":\"2.1\",\"title\":\"Schema 2.1\",\"count\":2},{\"id\":\"2.3\",\"title\":\"Schema 2.3\",\"count\":1},{\"id\":\"metadata version 4\",\"title\":\"Schema metadata version 4\",\"count\":1}],\"sources\":[{\"id\":\"levriero\",\"title\":\"Levriero\",\"count\":803750},{\"id\":\"mds\",\"title\":\"Mds\",\"count\":380943},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":23690},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":2698},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":551},{\"id\":\"test\",\"title\":\"Test\",\"count\":21},{\"id\":\"Elettra\",\"title\":\"Elettra\",\"count\":5},{\"id\":\"MCX\",\"title\":\"Mcx\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":24493},{\"id\":\"404\",\"title\":\"404\",\"count\":3347},{\"id\":\"403\",\"title\":\"403\",\"count\":977},{\"id\":\"401\",\"title\":\"401\",\"count\":284},{\"id\":\"500\",\"title\":\"500\",\"count\":279},{\"id\":\"503\",\"title\":\"503\",\"count\":144},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":11},{\"id\":\"502\",\"title\":\"502\",\"count\":2}],\"linksChecked\":880,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":65476},{\"id\":\"1\",\"title\":\"1\",\"count\":3898}],\"linkChecksSchemaOrgId\":1647,\"linkChecksDcIdentifier\":4751,\"linkChecksCitationDoi\":5,\"subjects\":[{\"id\":\"Anatomy\",\"title\":\"Anatomy\",\"count\":70282},{\"id\":\"80505 Web Technologies (excl. Web Search)\",\"title\":\"80505 Web Technologies (Excl. Web Search)\",\"count\":57738},{\"id\":\"Cat\",\"title\":\"Cat\",\"count\":19371},{\"id\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, etc.)\",\"title\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, Etc.)\",\"count\":11946},{\"id\":\"biodiversity\",\"title\":\"Biodiversity\",\"count\":5717},{\"id\":\"GBIF\",\"title\":\"Gbif\",\"count\":5708},{\"id\":\"species occurrences\",\"title\":\"Species Occurrences\",\"count\":5708},{\"id\":\"Disparities\",\"title\":\"Disparities\",\"count\":5457},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":4580},{\"id\":\"Paleoecology\",\"title\":\"Paleoecology\",\"count\":4522},{\"id\":\"Cosmology\",\"title\":\"Cosmology\",\"count\":4179},{\"id\":\"60101 Analytical Biochemistry\",\"title\":\"60101 Analytical Biochemistry\",\"count\":3495},{\"id\":\"Natural Sciences - Mathematics (1.1)\",\"title\":\"Natural Sciences Mathematics (1.1)\",\"count\":3467},{\"id\":\"80101 Adaptive Agents and Intelligent Robotics\",\"title\":\"80101 Adaptive Agents And Intelligent Robotics\",\"count\":3462},{\"id\":\"Research\",\"title\":\"Research\",\"count\":3431}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 81415, + "text": "{\"data\":[{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite792\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:33:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/2nrlcf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/2nrlcf\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1982-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/2NRLCF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/1aoley\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/1aoley\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/1AOLEY\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1982)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/2nrlcf\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/1aoley\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK27HBR5F\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:26.000Z\",\"registered\":\"2020-05-04T16:06:28.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1981)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/5msoef\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/isjqad\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2EFULDR\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:14.000Z\",\"registered\":\"2020-05-04T16:06:16.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/isjqad\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/isjqad\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/ISJQAD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:19.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/5msoef\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/5msoef\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1981-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/5MSOEF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:18.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1978)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/xe1f9t\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/norj5n\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK21CFLYG\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:01.000Z\",\"registered\":\"2020-05-04T16:06:02.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/norj5n\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/norj5n\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/NORJ5N\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.cdsp\",\"type\":\"clients\",\"attributes\":{\"name\":\"Centre de données socio-politiques\",\"symbol\":\"INIST.CDSP\",\"year\":2016,\"contactEmail\":\"genevieve.michaud@sciencespo.fr\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"Center for socio-political data (CNRS & Sciences Po)\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"dataspire-test.sciencespo.fr,cdsp.sciences-po.fr,sciences-po.fr,bequali.fr\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://cdsp.sciences-po.fr/en/\",\"salesforceId\":null,\"created\":\"2016-08-30T14:13:09.000Z\",\"updated\":\"2019-11-14T10:13:57.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1353064,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1146112},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":115757},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":91195}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":877168},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":154442},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":95321},{\"id\":\"other\",\"title\":\"Other\",\"count\":81907},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":12069},{\"id\":\"software\",\"title\":\"Software\",\"count\":7382},{\"id\":\"image\",\"title\":\"Image\",\"count\":7295},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4511},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":680},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":671},{\"id\":\"service\",\"title\":\"Service\",\"count\":117},{\"id\":\"model\",\"title\":\"Model\",\"count\":109},{\"id\":\"event\",\"title\":\"Event\",\"count\":89},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":78},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":52}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":269886},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1007671},{\"id\":\"2018\",\"title\":\"2018\",\"count\":61901},{\"id\":\"2017\",\"title\":\"2017\",\"count\":10753},{\"id\":\"2016\",\"title\":\"2016\",\"count\":660},{\"id\":\"2015\",\"title\":\"2015\",\"count\":440},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1460},{\"id\":\"2013\",\"title\":\"2013\",\"count\":177},{\"id\":\"2012\",\"title\":\"2012\",\"count\":87},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":5353},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":2},{\"id\":\"2050\",\"title\":\"2050\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":17},{\"id\":\"2024\",\"title\":\"2024\",\"count\":24},{\"id\":\"2023\",\"title\":\"2023\",\"count\":30},{\"id\":\"2022\",\"title\":\"2022\",\"count\":41},{\"id\":\"2021\",\"title\":\"2021\",\"count\":81},{\"id\":\"2020\",\"title\":\"2020\",\"count\":142402},{\"id\":\"2019\",\"title\":\"2019\",\"count\":341496},{\"id\":\"2018\",\"title\":\"2018\",\"count\":83344},{\"id\":\"2017\",\"title\":\"2017\",\"count\":38201},{\"id\":\"2016\",\"title\":\"2016\",\"count\":34969},{\"id\":\"2015\",\"title\":\"2015\",\"count\":33513},{\"id\":\"2014\",\"title\":\"2014\",\"count\":35568},{\"id\":\"2013\",\"title\":\"2013\",\"count\":105435},{\"id\":\"2012\",\"title\":\"2012\",\"count\":174877},{\"id\":\"2011\",\"title\":\"2011\",\"count\":40755},{\"id\":\"2010\",\"title\":\"2010\",\"count\":19898},{\"id\":\"2009\",\"title\":\"2009\",\"count\":18753},{\"id\":\"2008\",\"title\":\"2008\",\"count\":21227},{\"id\":\"2007\",\"title\":\"2007\",\"count\":15628},{\"id\":\"2006\",\"title\":\"2006\",\"count\":13398},{\"id\":\"2005\",\"title\":\"2005\",\"count\":10487},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14834},{\"id\":\"2003\",\"title\":\"2003\",\"count\":11372},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13506},{\"id\":\"2001\",\"title\":\"2001\",\"count\":9222},{\"id\":\"2000\",\"title\":\"2000\",\"count\":10545},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7401},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5554},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7325},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4228},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3705},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3153},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3198},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2735},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2543},{\"id\":\"1990\",\"title\":\"1990\",\"count\":3026},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1695},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1638},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1825},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1907},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1646},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1464},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1587},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1395},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1191},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4635},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1057},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1010},{\"id\":\"1977\",\"title\":\"1977\",\"count\":934},{\"id\":\"1976\",\"title\":\"1976\",\"count\":885},{\"id\":\"1975\",\"title\":\"1975\",\"count\":828},{\"id\":\"1974\",\"title\":\"1974\",\"count\":886},{\"id\":\"1973\",\"title\":\"1973\",\"count\":756},{\"id\":\"1972\",\"title\":\"1972\",\"count\":712},{\"id\":\"1971\",\"title\":\"1971\",\"count\":702},{\"id\":\"1970\",\"title\":\"1970\",\"count\":589},{\"id\":\"1969\",\"title\":\"1969\",\"count\":652},{\"id\":\"1968\",\"title\":\"1968\",\"count\":509},{\"id\":\"1967\",\"title\":\"1967\",\"count\":734},{\"id\":\"1966\",\"title\":\"1966\",\"count\":546},{\"id\":\"1965\",\"title\":\"1965\",\"count\":559},{\"id\":\"1964\",\"title\":\"1964\",\"count\":506},{\"id\":\"1963\",\"title\":\"1963\",\"count\":434},{\"id\":\"1962\",\"title\":\"1962\",\"count\":466},{\"id\":\"1961\",\"title\":\"1961\",\"count\":385},{\"id\":\"1960\",\"title\":\"1960\",\"count\":354},{\"id\":\"1959\",\"title\":\"1959\",\"count\":326},{\"id\":\"1958\",\"title\":\"1958\",\"count\":347},{\"id\":\"1957\",\"title\":\"1957\",\"count\":360},{\"id\":\"1956\",\"title\":\"1956\",\"count\":283},{\"id\":\"1955\",\"title\":\"1955\",\"count\":259},{\"id\":\"1954\",\"title\":\"1954\",\"count\":414},{\"id\":\"1953\",\"title\":\"1953\",\"count\":215},{\"id\":\"1952\",\"title\":\"1952\",\"count\":194},{\"id\":\"1951\",\"title\":\"1951\",\"count\":259},{\"id\":\"1950\",\"title\":\"1950\",\"count\":207},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":186},{\"id\":\"1947\",\"title\":\"1947\",\"count\":123},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":74},{\"id\":\"1944\",\"title\":\"1944\",\"count\":138},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":67},{\"id\":\"1938\",\"title\":\"1938\",\"count\":129},{\"id\":\"1937\",\"title\":\"1937\",\"count\":78},{\"id\":\"1936\",\"title\":\"1936\",\"count\":118},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":135},{\"id\":\"1933\",\"title\":\"1933\",\"count\":298},{\"id\":\"1932\",\"title\":\"1932\",\"count\":251},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":163},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":250},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":55},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":46},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":179},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":40},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":67},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":63},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":32},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":45},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":26},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":52},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":40},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1792\",\"title\":\"1792\",\"count\":1},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":10},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1451\",\"title\":\"1451\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2},{\"id\":\"1000\",\"title\":\"1000\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":129677},{\"id\":\"2019\",\"title\":\"2019\",\"count\":279242},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38269},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1658},{\"id\":\"2016\",\"title\":\"2016\",\"count\":129},{\"id\":\"2015\",\"title\":\"2015\",\"count\":72},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803873},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":174097},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":62022},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":46944},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":41843},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27728},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":20351},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":19625},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15129}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803873},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":174097},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27564},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":25487},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24881},{\"id\":\"demo.cul\",\"title\":\"Columbia University Libraries\",\"count\":19361},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17495},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":17297},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16576},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15051}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8379},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/05cc98565\",\"title\":\"Bank of Canada\",\"count\":178},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":99},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":92},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":26},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":25},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":19},{\"id\":\"ror.org/00za53h95\",\"title\":\"Johns Hopkins University\",\"count\":12}],\"prefixes\":[{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":174097},{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130739},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58819},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56678},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34962},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27564},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20740}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2920},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":742}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1062598},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":21530},{\"id\":\"4.3\",\"title\":\"Schema 4.3\",\"count\":13},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":12},{\"id\":\"2.1\",\"title\":\"Schema 2.1\",\"count\":2},{\"id\":\"2.3\",\"title\":\"Schema 2.3\",\"count\":1},{\"id\":\"metadata version 4\",\"title\":\"Schema metadata version 4\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":25679},{\"id\":\"404\",\"title\":\"404\",\"count\":3535},{\"id\":\"403\",\"title\":\"403\",\"count\":998},{\"id\":\"401\",\"title\":\"401\",\"count\":294},{\"id\":\"500\",\"title\":\"500\",\"count\":277},{\"id\":\"503\",\"title\":\"503\",\"count\":144},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":10},{\"id\":\"502\",\"title\":\"502\",\"count\":3}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -142,8 +142,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:13.938Z", - "time": 1717, + "startedDateTime": "2020-05-04T16:41:38.055Z", + "time": 1348, "timings": { "blocked": -1, "connect": -1, @@ -151,7 +151,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1717 + "wait": 1348 } } ], diff --git a/recordings/Acceptance-staff_admin-doi_1134964664/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-staff_admin-doi_1134964664/visiting-specific-doi_4109340652/recording.har index 9350c8da5..ea02e820c 100644 --- a/recordings/Acceptance-staff_admin-doi_1134964664/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-staff_admin-doi_1134964664/visiting-specific-doi_4109340652/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | doi/visiting specific doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8663, + "bodySize": 8723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8663, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8723, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:16.863Z", - "time": 123, + "startedDateTime": "2020-05-04T16:41:40.563Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 123 + "wait": 120 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5401, + "bodySize": 5441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5401, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5441, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:17.086Z", - "time": 99, + "startedDateTime": "2020-05-04T16:41:40.846Z", + "time": 138, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 99 + "wait": 138 } }, { @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:17.086Z", - "time": 139, + "startedDateTime": "2020-05-04T16:41:40.846Z", + "time": 201, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 139 + "wait": 201 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:17.208Z", - "time": 100, + "startedDateTime": "2020-05-04T16:41:41.000Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 82 } } ], diff --git a/recordings/Acceptance-staff_admin-organization_3932086375/editing-organization-DataCite-form_1547391477/recording.har b/recordings/Acceptance-staff_admin-organization_3932086375/editing-organization-DataCite-form_1547391477/recording.har index 515c4f3b6..8a791a2b4 100644 --- a/recordings/Acceptance-staff_admin-organization_3932086375/editing-organization-DataCite-form_1547391477/recording.har +++ b/recordings/Acceptance-staff_admin-organization_3932086375/editing-organization-DataCite-form_1547391477/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | organization/editing organization DataCite form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7126, + "bodySize": 7199, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7126, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7199, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,7 +63,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:25.498Z", + "startedDateTime": "2020-05-04T16:41:48.946Z", "time": 103, "timings": { "blocked": -1, diff --git a/recordings/Acceptance-staff_admin-organization_3932086375/new-organization-form_3448795674/recording.har b/recordings/Acceptance-staff_admin-organization_3932086375/new-organization-form_3448795674/recording.har index 3fff56509..9407f31bf 100644 --- a/recordings/Acceptance-staff_admin-organization_3932086375/new-organization-form_3448795674/recording.har +++ b/recordings/Acceptance-staff_admin-organization_3932086375/new-organization-form_3448795674/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | organization/new organization form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27199, + "bodySize": 28087, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27199, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28087, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:24.411Z", - "time": 227, + "startedDateTime": "2020-05-04T16:41:47.055Z", + "time": 196, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 227 + "wait": 196 } }, { @@ -99,7 +99,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 17, - "text": "{\"symbol\":\"HTIE\"}" + "text": "{\"symbol\":\"IZAY\"}" }, "cookies": [], "headers": [ @@ -118,8 +118,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:25.010Z", - "time": 127, + "startedDateTime": "2020-05-04T16:41:48.379Z", + "time": 146, "timings": { "blocked": -1, "connect": -1, @@ -127,11 +127,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 146 } }, { - "_id": "a4feaca82292de2f9877d99a5102ae6f", + "_id": "8606a6643b40921d2218530a2648c727", "_order": 0, "cache": {}, "request": { @@ -153,17 +153,17 @@ "queryString": [ { "name": "id", - "value": "HTIE" + "value": "IZAY" } ], - "url": "https://api.test.datacite.org/providers?id=HTIE" + "url": "https://api.test.datacite.org/providers?id=IZAY" }, "response": { "bodySize": 121, "content": { "mimeType": "application/json; charset=utf-8", "size": 121, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/providers?id=HTIE\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/providers?id=IZAY\"}}" }, "cookies": [], "headers": [ @@ -182,8 +182,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:25.196Z", - "time": 152, + "startedDateTime": "2020-05-04T16:41:48.552Z", + "time": 105, "timings": { "blocked": -1, "connect": -1, @@ -191,7 +191,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 152 + "wait": 105 } } ], diff --git a/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har b/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har index 431084d0f..ecc9d5057 100644 --- a/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har +++ b/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organization-workshop_2983874283/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | organization/visiting provider DC consortium organization workshop", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/workshop?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 3831, + "bodySize": 3864, "content": { "mimeType": "application/json; charset=utf-8", - "size": 3831, - "text": "{\"data\":{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":14,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 3864, + "text": "{\"data\":{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":14,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:24.142Z", - "time": 98, + "startedDateTime": "2020-05-04T16:41:46.678Z", + "time": 101, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 101 } } ], diff --git a/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organizations_2340610991/recording.har b/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organizations_2340610991/recording.har index 21bf0d312..049160664 100644 --- a/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organizations_2340610991/recording.har +++ b/recordings/Acceptance-staff_admin-organization_3932086375/visiting-provider-DC-consortium-organizations_2340610991/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | organization/visiting provider DC consortium organizations", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27199, + "bodySize": 28087, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27199, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28087, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:23.540Z", - "time": 233, + "startedDateTime": "2020-05-04T16:41:46.034Z", + "time": 188, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 233 + "wait": 188 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 17939, + "bodySize": 16943, "content": { "mimeType": "application/json; charset=utf-8", - "size": 17939, - "text": "{\"data\":[{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":\"\",\"country\":\"\",\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80221\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":\"\",\"country\":\"\",\"city\":null},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":9,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":9}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":9}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 16943, + "text": "{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":\"\",\"city\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"address\":null,\"organization\":null,\"department\":null,\"postCode\":null,\"state\":null,\"country\":null,\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}],\"meta\":{\"total\":8,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2},{\"id\":\"2019\",\"title\":\"2019\",\"count\":1},{\"id\":\"2018\",\"title\":\"2018\",\"count\":3},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2010\",\"title\":\"2010\",\"count\":1}],\"regions\":[{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":5}],\"memberTypes\":[{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":8}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":1},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":1}],\"focusAreas\":[{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":1},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":8}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?consortium-id=dc&focus-area=&include-deleted=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:23.788Z", - "time": 93, + "startedDateTime": "2020-05-04T16:41:46.240Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 113 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/assign-a-prefix_1946406289/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/assign-a-prefix_1946406289/recording.har index c7592ab42..32acbd8f1 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/assign-a-prefix_1946406289/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/assign-a-prefix_1946406289/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/assign a prefix", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7126, + "bodySize": 7199, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7126, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7199, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:17.561Z", - "time": 105, + "startedDateTime": "2020-05-04T16:42:04.019Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 103 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5401, + "bodySize": 5441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5401, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5441, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:17.838Z", - "time": 177, + "startedDateTime": "2020-05-04T16:42:04.298Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 177 + "wait": 95 } }, { @@ -181,7 +181,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 2751, - "text": "{\"data\":[{\"id\":\"10.80277\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80277\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80278\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80278\",\"createdAt\":\"2019-07-03T14:06:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80279\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80279\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80280\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80280\",\"createdAt\":\"2019-07-03T14:06:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80281\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80281\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80282\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80282\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80283\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80283\",\"createdAt\":\"2019-07-03T13:59:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80284\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80284\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80285\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80285\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80286\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80286\",\"createdAt\":\"2019-07-03T14:01:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}}],\"meta\":{\"total\":175,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":175}],\"states\":[{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?page%5Bsize%5D=10&query=&sort=name&state=unassigned\",\"next\":\"https://api.test.datacite.org/prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=10&query=&sort=name\"}}" + "text": "{\"data\":[{\"id\":\"10.80285\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80285\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80286\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80286\",\"createdAt\":\"2019-07-03T14:01:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80287\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80287\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80288\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80288\",\"createdAt\":\"2019-07-03T14:01:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80290\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80290\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80291\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80291\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80292\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80292\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80293\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80293\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80294\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80294\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80295\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80295\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}}],\"meta\":{\"total\":166,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":166}],\"states\":[{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?page%5Bsize%5D=10&query=&sort=name&state=unassigned\",\"next\":\"https://api.test.datacite.org/prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=10&query=&sort=name\"}}" }, "cookies": [], "headers": [ @@ -200,8 +200,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:17.838Z", - "time": 229, + "startedDateTime": "2020-05-04T16:42:04.298Z", + "time": 140, "timings": { "blocked": -1, "connect": -1, @@ -209,7 +209,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 229 + "wait": 140 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/cancel-assigning-a-prefix_177712173/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/cancel-assigning-a-prefix_177712173/recording.har index fc8c7ba7b..5010aa4fd 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/cancel-assigning-a-prefix_177712173/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/cancel-assigning-a-prefix_177712173/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/cancel assigning a prefix", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7126, + "bodySize": 7199, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7126, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7199, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:18.187Z", - "time": 96, + "startedDateTime": "2020-05-04T16:42:04.553Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 96 + "wait": 97 } }, { - "_id": "8b3492175450fcee102e938e70cf38f6", + "_id": "cbb69e99b65a1bf0f23981f3e65b627c", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,37 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 671, + "headersSize": 713, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/datacite" + "queryString": [ + { + "name": "page", + "value": { + "size": "10" + } + }, + { + "name": "query", + "value": "" + }, + { + "name": "sort", + "value": "name" + }, + { + "name": "state", + "value": "unassigned" + } + ], + "url": "https://api.test.datacite.org/prefixes?page%5Bsize%5D=10&query=&sort=name&state=unassigned" }, "response": { - "bodySize": 5401, + "bodySize": 2751, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5401, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 2751, + "text": "{\"data\":[{\"id\":\"10.80285\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80285\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80286\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80286\",\"createdAt\":\"2019-07-03T14:01:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80287\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80287\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80288\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80288\",\"createdAt\":\"2019-07-03T14:01:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80290\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80290\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80291\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80291\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80292\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80292\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80293\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80293\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80294\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80294\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80295\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80295\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}}],\"meta\":{\"total\":166,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":166}],\"states\":[{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?page%5Bsize%5D=10&query=&sort=name&state=unassigned\",\"next\":\"https://api.test.datacite.org/prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=10&query=&sort=name\"}}" }, "cookies": [], "headers": [ @@ -122,8 +141,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:18.399Z", - "time": 89, + "startedDateTime": "2020-05-04T16:42:04.807Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +150,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 91 } }, { - "_id": "cbb69e99b65a1bf0f23981f3e65b627c", + "_id": "8b3492175450fcee102e938e70cf38f6", "_order": 0, "cache": {}, "request": { @@ -151,37 +170,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 713, + "headersSize": 671, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "page", - "value": { - "size": "10" - } - }, - { - "name": "query", - "value": "" - }, - { - "name": "sort", - "value": "name" - }, - { - "name": "state", - "value": "unassigned" - } - ], - "url": "https://api.test.datacite.org/prefixes?page%5Bsize%5D=10&query=&sort=name&state=unassigned" + "queryString": [], + "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 2751, + "bodySize": 5441, "content": { "mimeType": "application/json; charset=utf-8", - "size": 2751, - "text": "{\"data\":[{\"id\":\"10.80277\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80277\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80278\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80278\",\"createdAt\":\"2019-07-03T14:06:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80279\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80279\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80280\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80280\",\"createdAt\":\"2019-07-03T14:06:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80281\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80281\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80282\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80282\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80283\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80283\",\"createdAt\":\"2019-07-03T13:59:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80284\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80284\",\"createdAt\":\"2019-07-03T14:06:39.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80285\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80285\",\"createdAt\":\"2019-07-03T14:01:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}},{\"id\":\"10.80286\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80286\",\"createdAt\":\"2019-07-03T14:01:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[]}}}],\"meta\":{\"total\":175,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2019\",\"title\":\"2019\",\"count\":175}],\"states\":[{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?page%5Bsize%5D=10&query=&sort=name&state=unassigned\",\"next\":\"https://api.test.datacite.org/prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=10&query=&sort=name\"}}" + "size": 5441, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -200,7 +200,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:18.399Z", + "startedDateTime": "2020-05-04T16:42:04.807Z", "time": 100, "timings": { "blocked": -1, diff --git a/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-delete-form_2735401116/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-delete-form_2735401116/recording.har index 428986d39..f76f7a703 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-delete-form_2735401116/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-delete-form_2735401116/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/editing provider TIB delete form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:17.337Z", - "time": 85, + "startedDateTime": "2020-05-04T16:42:03.439Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 85 + "wait": 99 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-form_4290907891/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-form_4290907891/recording.har index 78043e79a..a8c2bdb32 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-form_4290907891/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-form_4290907891/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/editing provider TIB form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:37.605Z", - "time": 86, + "startedDateTime": "2020-05-04T16:42:01.904Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 97 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-password-form_831030842/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-password-form_831030842/recording.har index fa9e70d99..150e3ab13 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-password-form_831030842/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/editing-provider-TIB-password-form_831030842/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/editing provider TIB password form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:17.027Z", - "time": 121, + "startedDateTime": "2020-05-04T16:42:03.066Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 99 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/new-provider-form_32901344/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/new-provider-form_32901344/recording.har index 2f63a8e37..370815303 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/new-provider-form_32901344/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/new-provider-form_32901344/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/new provider form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -35,7 +35,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 17, - "text": "{\"symbol\":\"KUMM\"}" + "text": "{\"symbol\":\"EBKD\"}" }, "cookies": [], "headers": [ @@ -54,8 +54,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:37.233Z", - "time": 89, + "startedDateTime": "2020-05-04T16:42:01.478Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -63,11 +63,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 102 } }, { - "_id": "7e7e49ead799f83faeff6c834b49bc62", + "_id": "97d1b5e1b3119d8be0bba5c91579c036", "_order": 0, "cache": {}, "request": { @@ -89,17 +89,17 @@ "queryString": [ { "name": "id", - "value": "KUMM" + "value": "EBKD" } ], - "url": "https://api.test.datacite.org/providers?id=KUMM" + "url": "https://api.test.datacite.org/providers?id=EBKD" }, "response": { "bodySize": 121, "content": { "mimeType": "application/json; charset=utf-8", "size": 121, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/providers?id=KUMM\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/providers?id=EBKD\"}}" }, "cookies": [], "headers": [ @@ -118,8 +118,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:37.352Z", - "time": 158, + "startedDateTime": "2020-05-04T16:42:01.615Z", + "time": 128, "timings": { "blocked": -1, "connect": -1, @@ -127,7 +127,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 158 + "wait": 128 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har index 97b74a883..e1b2062bc 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/updating-consortium-DC_3494094721/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/updating consortium DC", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27199, + "bodySize": 28087, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27199, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28087, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:26.962Z", - "time": 221, + "startedDateTime": "2020-05-04T16:41:51.029Z", + "time": 226, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 221 + "wait": 226 } }, { - "_id": "53e2c4d78991c8439a233dfe6c357d0a", + "_id": "74129ba649f58855a6c276f875a5731f", "_order": 0, "cache": {}, "request": { @@ -98,7 +98,7 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"dc\",\"attributes\":{\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"logoUrl\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"website\":\"https://datacite.org\",\"isActive\":true,\"passwordInput\":null,\"nonProfitStatus\":\"non-profit\",\"hasPassword\":true,\"keepPassword\":true,\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"twitterHandle\":\"@datacite757\",\"billingInformation\":{\"city\":\"\"},\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"secondaryServiceContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"joined\":null,\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"type\":\"providers\"}}" + "text": "{\"data\":{\"id\":\"dc\",\"attributes\":{\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"logoUrl\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"website\":\"https://datacite.org\",\"isActive\":true,\"passwordInput\":null,\"nonProfitStatus\":\"non-profit\",\"hasPassword\":true,\"keepPassword\":true,\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"secondaryServiceContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"joined\":null,\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"type\":\"providers\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/providers/dc" @@ -108,7 +108,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1753, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite757\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-03T14:35:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}}" + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}}" }, "cookies": [], "headers": [ @@ -127,8 +127,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-05-03T14:35:53.094Z", - "time": 150, + "startedDateTime": "2020-05-04T16:41:52.619Z", + "time": 159, "timings": { "blocked": -1, "connect": -1, @@ -136,7 +136,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 150 + "wait": 159 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC-info_2278447806/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC-info_2278447806/recording.har index 358a62aaa..4d90bc79f 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC-info_2278447806/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC-info_2278447806/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting consortium DC info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27199, + "bodySize": 28087, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27199, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite944\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28087, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:29.424Z", - "time": 222, + "startedDateTime": "2020-05-04T16:41:54.039Z", + "time": 200, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 222 + "wait": 200 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc/stats" }, "response": { - "bodySize": 1807, + "bodySize": 1768, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1807, - "text": "{\"providers\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2},{\"id\":\"2012\",\"title\":\"2012\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2018\",\"title\":\"2018\",\"count\":5},{\"id\":\"2019\",\"title\":\"2019\",\"count\":6},{\"id\":\"2020\",\"title\":\"2020\",\"count\":9}],\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2015\",\"title\":\"2015\",\"count\":4},{\"id\":\"2016\",\"title\":\"2016\",\"count\":6},{\"id\":\"2017\",\"title\":\"2017\",\"count\":33},{\"id\":\"2018\",\"title\":\"2018\",\"count\":94},{\"id\":\"2019\",\"title\":\"2019\",\"count\":99},{\"id\":\"2020\",\"title\":\"2020\",\"count\":104}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4660},{\"id\":\"2019\",\"title\":\"2019\",\"count\":18771},{\"id\":\"2018\",\"title\":\"2018\",\"count\":20915},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":6836},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":473},{\"id\":\"text\",\"title\":\"Text\",\"count\":408},{\"id\":\"software\",\"title\":\"Software\",\"count\":156},{\"id\":\"other\",\"title\":\"Other\",\"count\":145},{\"id\":\"image\",\"title\":\"Image\",\"count\":50},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":34},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":21},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":12},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1}]}" + "size": 1768, + "text": "{\"providers\":[{\"id\":\"2010\",\"title\":\"2010\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2},{\"id\":\"2012\",\"title\":\"2012\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2018\",\"title\":\"2018\",\"count\":5},{\"id\":\"2019\",\"title\":\"2019\",\"count\":6}],\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2015\",\"title\":\"2015\",\"count\":4},{\"id\":\"2016\",\"title\":\"2016\",\"count\":6},{\"id\":\"2017\",\"title\":\"2017\",\"count\":33},{\"id\":\"2018\",\"title\":\"2018\",\"count\":94},{\"id\":\"2019\",\"title\":\"2019\",\"count\":99},{\"id\":\"2020\",\"title\":\"2020\",\"count\":104}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6009},{\"id\":\"2019\",\"title\":\"2019\",\"count\":18776},{\"id\":\"2018\",\"title\":\"2018\",\"count\":20915},{\"id\":\"2017\",\"title\":\"2017\",\"count\":25},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1}],\"resourceTypes\":[{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":8148},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":474},{\"id\":\"text\",\"title\":\"Text\",\"count\":414},{\"id\":\"software\",\"title\":\"Software\",\"count\":161},{\"id\":\"other\",\"title\":\"Other\",\"count\":145},{\"id\":\"image\",\"title\":\"Image\",\"count\":50},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":34},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":21},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":12},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:30.051Z", - "time": 144, + "startedDateTime": "2020-05-04T16:41:54.333Z", + "time": 163, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 144 + "wait": 163 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC_3803602794/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC_3803602794/recording.har index 7c01f9120..6270c37a9 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC_3803602794/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-consortium-DC_3803602794/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting consortium DC", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/dc?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 27199, + "bodySize": 28087, "content": { "mimeType": "application/json; charset=utf-8", - "size": 27199, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite609\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:18:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-01T08:59:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cnsrtrg.repo1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-22T09:57:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" + "size": 28087, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite948\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:33:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21},\"included\":[{\"id\":\"demo\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Demo Provider\",\"displayName\":\"DataCite Demo Provider\",\"symbol\":\"DEMO\",\"website\":\"https://datacite.org\",\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-11-27T21:03:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"demo.cos\",\"type\":\"clients\"},{\"id\":\"demo.uky\",\"type\":\"clients\"},{\"id\":\"demo.datacite\",\"type\":\"clients\"},{\"id\":\"demo.orbis\",\"type\":\"clients\"},{\"id\":\"demo.umass\",\"type\":\"clients\"},{\"id\":\"demo.iris\",\"type\":\"clients\"},{\"id\":\"demo.witt\",\"type\":\"clients\"},{\"id\":\"demo.hodge\",\"type\":\"clients\"},{\"id\":\"demo.ethz\",\"type\":\"clients\"},{\"id\":\"demo.umasscandi\",\"type\":\"clients\"},{\"id\":\"demo.und\",\"type\":\"clients\"},{\"id\":\"demo.texasdata\",\"type\":\"clients\"},{\"id\":\"demo.scholarworks\",\"type\":\"clients\"},{\"id\":\"demo.usertest\",\"type\":\"clients\"},{\"id\":\"demo.mulhall\",\"type\":\"clients\"},{\"id\":\"demo.shepherd\",\"type\":\"clients\"},{\"id\":\"demo.griidc\",\"type\":\"clients\"},{\"id\":\"demo.cul\",\"type\":\"clients\"},{\"id\":\"demo.stul\",\"type\":\"clients\"},{\"id\":\"demo.umd\",\"type\":\"clients\"},{\"id\":\"demo.icrisat\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70032\",\"type\":\"prefixes\"},{\"id\":\"10.70042\",\"type\":\"prefixes\"},{\"id\":\"10.70043\",\"type\":\"prefixes\"},{\"id\":\"10.70044\",\"type\":\"prefixes\"},{\"id\":\"10.70049\",\"type\":\"prefixes\"},{\"id\":\"10.25626\",\"type\":\"prefixes\"},{\"id\":\"10.25625\",\"type\":\"prefixes\"},{\"id\":\"10.25624\",\"type\":\"prefixes\"},{\"id\":\"10.33512\",\"type\":\"prefixes\"},{\"id\":\"10.33513\",\"type\":\"prefixes\"},{\"id\":\"10.33520\",\"type\":\"prefixes\"},{\"id\":\"10.33516\",\"type\":\"prefixes\"},{\"id\":\"10.33515\",\"type\":\"prefixes\"},{\"id\":\"10.33514\",\"type\":\"prefixes\"},{\"id\":\"10.33517\",\"type\":\"prefixes\"},{\"id\":\"10.33521\",\"type\":\"prefixes\"},{\"id\":\"10.33522\",\"type\":\"prefixes\"},{\"id\":\"10.33518\",\"type\":\"prefixes\"},{\"id\":\"10.33523\",\"type\":\"prefixes\"},{\"id\":\"10.70102\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"sml\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Provider\",\"displayName\":\"DataCite Provider\",\"symbol\":\"SML\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-04-04T07:58:08.000Z\",\"updated\":\"2019-08-07T22:55:07.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"sml.cyverse\",\"type\":\"clients\"},{\"id\":\"sml.rutgers\",\"type\":\"clients\"},{\"id\":\"sml.tdar\",\"type\":\"clients\"},{\"id\":\"sml.cip\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33540\",\"type\":\"prefixes\"},{\"id\":\"10.80010\",\"type\":\"prefixes\"},{\"id\":\"10.80040\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bibtag\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Workshop Bibliothekartag\",\"displayName\":\"DataCite Workshop Bibliothekartag\",\"symbol\":\"BIBTAG\",\"website\":\"https://www.bibliothekartag.de/\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-06-11T12:03:43.000Z\",\"updated\":\"2019-08-06T07:05:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibtag.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33507\",\"type\":\"prefixes\"},{\"id\":\"10.33505\",\"type\":\"prefixes\"},{\"id\":\"10.33506\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"workshop\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Training Workshop\",\"displayName\":\"DataCite Training Workshop\",\"symbol\":\"WORKSHOP\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-12-10T07:21:50.000Z\",\"updated\":\"2019-08-06T07:05:20.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"workshop.fenner\",\"type\":\"clients\"},{\"id\":\"workshop.bsb\",\"type\":\"clients\"},{\"id\":\"workshop.khk-dui\",\"type\":\"clients\"},{\"id\":\"workshop.era\",\"type\":\"clients\"},{\"id\":\"workshop.hab\",\"type\":\"clients\"},{\"id\":\"workshop.gwdg\",\"type\":\"clients\"},{\"id\":\"workshop.era2\",\"type\":\"clients\"},{\"id\":\"workshop.dlr\",\"type\":\"clients\"},{\"id\":\"workshop.slsi\",\"type\":\"clients\"},{\"id\":\"workshop.tib\",\"type\":\"clients\"},{\"id\":\"workshop.zbmed\",\"type\":\"clients\"},{\"id\":\"workshop.era3\",\"type\":\"clients\"},{\"id\":\"workshop.ici\",\"type\":\"clients\"},{\"id\":\"workshop.sub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21352\",\"type\":\"prefixes\"},{\"id\":\"10.21351\",\"type\":\"prefixes\"},{\"id\":\"10.21357\",\"type\":\"prefixes\"},{\"id\":\"10.21356\",\"type\":\"prefixes\"},{\"id\":\"10.21355\",\"type\":\"prefixes\"},{\"id\":\"10.21354\",\"type\":\"prefixes\"},{\"id\":\"10.21358\",\"type\":\"prefixes\"},{\"id\":\"10.21342\",\"type\":\"prefixes\"},{\"id\":\"10.21344\",\"type\":\"prefixes\"},{\"id\":\"10.21343\",\"type\":\"prefixes\"},{\"id\":\"10.21345\",\"type\":\"prefixes\"},{\"id\":\"10.21349\",\"type\":\"prefixes\"},{\"id\":\"10.24424\",\"type\":\"prefixes\"},{\"id\":\"10.24423\",\"type\":\"prefixes\"},{\"id\":\"10.24429\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"bka\",\"type\":\"providers\",\"attributes\":{\"name\":\"BKA\",\"displayName\":\"BKA\",\"symbol\":\"BKA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:55:50.000Z\",\"updated\":\"2019-11-05T00:37:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testmary\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test mary\",\"displayName\":\"test mary\",\"symbol\":\"TESTMARY\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-09-13T12:58:32.000Z\",\"updated\":\"2019-11-05T00:40:00.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"rphco\",\"type\":\"providers\",\"attributes\":{\"name\":\"RPH Test Consortium Org\",\"displayName\":\"RPH Test Consortium Org\",\"symbol\":\"RPHCO\",\"website\":\"https://test.org\",\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-25T10:27:20.000Z\",\"updated\":\"2020-03-06T15:26:06.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"rphco.rwhdvh\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"testaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"DATACITE.TEST1007\",\"displayName\":\"TESTAA\",\"symbol\":\"TESTAA\",\"website\":null,\"systemEmail\":\"rhallett@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:08:37.000Z\",\"updated\":\"2019-11-05T00:39:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"marytest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Mary test 2\",\"displayName\":\"Mary test 2\",\"symbol\":\"MARYTEST\",\"website\":null,\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T09:49:40.000Z\",\"updated\":\"2019-11-05T00:40:58.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"abcde\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABCDE\",\"displayName\":\"ABCDE\",\"symbol\":\"ABCDE\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T22:08:39.000Z\",\"updated\":\"2019-11-05T00:37:16.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuaa\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUAA\",\"displayName\":\"UUAA\",\"symbol\":\"UUAA\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-04T23:06:26.000Z\",\"updated\":\"2019-11-04T23:07:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"uuuu\",\"type\":\"providers\",\"attributes\":{\"name\":\"UUUU\",\"displayName\":\"UUUU\",\"symbol\":\"UUUU\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-11-05T00:41:38.000Z\",\"updated\":\"2019-11-05T00:42:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"ydtr\",\"type\":\"providers\",\"attributes\":{\"name\":\"YDTR\",\"displayName\":\"YDTR\",\"symbol\":\"YDTR\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:21:30.000Z\",\"updated\":\"2020-02-27T19:21:42.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"vpmj\",\"type\":\"providers\",\"attributes\":{\"name\":\"Charité\",\"displayName\":\"Charité\",\"symbol\":\"VPMJ\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"humanities\",\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/001w7jn25\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T19:22:02.000Z\",\"updated\":\"2020-02-27T20:56:29.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"clyy\",\"type\":\"providers\",\"attributes\":{\"name\":\"CLYY\",\"displayName\":\"CLYY\",\"symbol\":\"CLYY\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T20:57:49.000Z\",\"updated\":\"2020-02-27T21:04:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"mgxi\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"MGXI\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":\"Bla bla.\",\"region\":\"EMEA\",\"country\":\"CH\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\",\"country\":\"\"},\"rorId\":\"https://ror.org/05a28rw58\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-27T21:36:33.000Z\",\"updated\":\"2020-02-28T09:25:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mgxi.wwchpa\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"epow\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test 28 feb\",\"displayName\":\"Test 28 feb\",\"symbol\":\"EPOW\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-28T09:47:04.000Z\",\"updated\":\"2020-02-28T09:50:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"cnsrtrg\",\"type\":\"providers\",\"attributes\":{\"name\":\"Consortium Organization\",\"displayName\":\"Consortium Organization\",\"symbol\":\"CNSRTRG\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-01T08:59:19.000Z\",\"updated\":\"2020-04-25T15:49:10.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"moia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Test Mary\",\"displayName\":\"Test Mary\",\"symbol\":\"MOIA\",\"website\":null,\"systemEmail\":\"mhirsch@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T09:57:00.000Z\",\"updated\":\"2020-04-27T07:44:55.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}},{\"id\":\"xwpb\",\"type\":\"providers\",\"attributes\":{\"name\":\"ABC\",\"displayName\":\"ABC\",\"symbol\":\"XWPB\",\"website\":null,\"systemEmail\":\"info@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":false,\"hasPassword\":false,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"state\":\"\",\"country\":\"\"},\"rorId\":null,\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-25T15:46:36.000Z\",\"updated\":\"2020-04-25T15:49:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"DC\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,7 +63,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:26.543Z", + "startedDateTime": "2020-05-04T16:41:50.512Z", "time": 196, "timings": { "blocked": -1, diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-dois_3257149311/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-dois_3257149311/recording.har index c233c89cd..49436759f 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-dois_3257149311/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-dois_3257149311/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting provider TIB dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:31.154Z", - "time": 111, + "startedDateTime": "2020-05-04T16:41:55.595Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 97 } }, { @@ -183,11 +183,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=tib&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 97553, + "bodySize": 72152, "content": { "mimeType": "application/json; charset=utf-8", - "size": 97553, - "text": "{\"data\":[{\"id\":\"10.24396/thersites.vol11.107\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24396/thersites.vol11.107\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24396/thersites.vol11.107\",\"identifierType\":\"DOI\"},{\"identifier\":\"1-12-107\",\"identifierType\":\"publisherId\"}],\"creators\":[{\"name\":\"Hagedoorn, Jon\",\"nameType\":\"Personal\",\"givenName\":\"Jon\",\"familyName\":\"Hagedoorn\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Winkler, Marco\",\"nameType\":\"Personal\",\"givenName\":\"Marco\",\"familyName\":\"Winkler\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Review of Safran, Screening the Golden Ages of the Classical Tradition\"}],\"publisher\":\"THERSITES\",\"container\":{\"type\":\"Series\",\"title\":\"THERSITES\",\"lastPage\":\"Test\",\"firstPage\":\"Vol 11 (2020): OJS3\",\"identifier\":\"10.24396/thersites.vol11\",\"identifierType\":\"DOI\"},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-10-22\",\"dateType\":\"Submitted\"},{\"date\":\"2019-10-22\",\"dateType\":\"Accepted\"},{\"date\":\"2019-11-22\",\"dateType\":\"Updated\"},{\"date\":\"2019-10-22\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.24396/thersites.vol11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"76 - 78 Pages\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Meredith Safran’s edited collection of essays on the golden ages of Greece and Rome as represented in film and television in the twentieth and twenty-first century is a welcome addition to the Screening Antiquity series from Edinburgh University Press. Many of the American authors draw parallels between the ancient construction of a lost golden age and a modern nostalgia for a supposed past golden age of America, both historic and cinematic. A wish to return to conservative values and to “Make America Great Again”, a quote from both Ronald Regan and Donald Trump used by Vincent Tomasso to illustrate a discussion of different types of nostalgia, underpins contemporary American politics, and the essays within this collection, which provide a commentary on the modern American context of production of the films and television series as well as on their relationship with the ancient world. The volume split into two halves, the first focussing on films and television series that have a predominant relationship with ancient Greece, and the second with ancient Rome.\",\"descriptionType\":\"Abstract\"},{\"description\":\"THERSITES, Vol 11 (2020): OJS3-Test\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://ojs-test.cedis.fu-berlin.de/ojs-cf-ugt4/index.php/thr/article/view/107\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://ojs-test.cedis.fu-berlin.de/ojs-cf-ugt4/index.php/thr/article/view/107\",\"error\":\"\",\"status\":404,\"checked\":\"2020-04-05 04:58:31\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=iso-8859-1\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":34},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-22T08:49:09.000Z\",\"registered\":\"2019-11-22T08:49:09.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:37.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"}}}},{\"id\":\"10.13141/foo\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.13141/foo\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.13141/foo\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hubrich, Stefan\",\"nameType\":\"Personal\",\"givenName\":\"Stefan\",\"familyName\":\"Hubrich\",\"affiliation\":[]},{\"name\":\"Gerike, Regine\",\"nameType\":\"Personal\",\"givenName\":\"Regine\",\"familyName\":\"Gerike\",\"affiliation\":[]},{\"name\":\"Sommer, Carsten\",\"nameType\":\"Personal\",\"givenName\":\"Carsten\",\"familyName\":\"Sommer\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Fehlereinflüsse und Teilnahmebereitschaft bei Haushaltsbefragungen zum Verkehrsverhalten\"}],\"publisher\":\"(:unav)\",\"container\":{},\"publicationYear\":2018,\"subjects\":[{\"subject\":\"Haushaltsbefragung\"},{\"subject\":\"Verkehrsverhalten\"},{\"subject\":\"Mobilität\"},{\"subject\":\"Querschnittsbefragung\"},{\"subject\":\"Befragungsmethoden\"},{\"subject\":\"Erhebungsqualität\"},{\"subject\":\"Qualitätsindikatoren\"},{\"subject\":\"Erhebungsfehler\"},{\"subject\":\"Teilnahmebereitschaft\"},{\"subject\":\"Antwortquote\"},{\"subject\":\"Ausschöpfung\"},{\"subject\":\"household travel survey\"},{\"subject\":\"travel behavior\"},{\"subject\":\"mobility\"},{\"subject\":\"cross-sectional survey\"},{\"subject\":\"survey modes\"},{\"subject\":\"survey quality\"},{\"subject\":\"quality indicators\"},{\"subject\":\"survey errors\"},{\"subject\":\"bias\"},{\"subject\":\"nonresponse\"},{\"subject\":\"response rate\"}],\"contributors\":[],\"dates\":[{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"doctoral_thesis\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://slub.qucosa.de/id/qucosa:30686\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://slub.qucosa.de/landing-page/?tx_dlf[id]=https%3A%2F%2Fslub.qucosa.de%2Fapi%2Fqucosa%253A30686%2Fmets\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:58:26\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://slub.qucosa.de/id/qucosa:30686\",\"https://slub.qucosa.de/resolver.php?obj=qucosa:30686\"],\"redirectCount\":2,\"downloadLatency\":2173},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-28T13:01:18.000Z\",\"registered\":\"2019-03-28T13:01:21.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:01:36.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.slubdd\",\"type\":\"clients\"}}}},{\"id\":\"10.2312/17fs-0s58\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.2312/17fs-0s58\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.2312/17fs-0s58\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Garcia, A.O.\",\"nameType\":\"Personal\",\"givenName\":\"A.O.\",\"familyName\":\"Garcia\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Bourov, S.\",\"nameType\":\"Personal\",\"givenName\":\"S.\",\"familyName\":\"Bourov\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Hammad, A.\",\"nameType\":\"Personal\",\"givenName\":\"A.\",\"familyName\":\"Hammad\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Jejkal, T.\",\"nameType\":\"Personal\",\"givenName\":\"T.\",\"familyName\":\"Jejkal\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Otte, J.C.\",\"nameType\":\"Personal\",\"givenName\":\"J.C.\",\"familyName\":\"Otte\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Pfeiffer, S.\",\"nameType\":\"Personal\",\"givenName\":\"S.\",\"familyName\":\"Pfeiffer\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Schenker, T.\",\"nameType\":\"Personal\",\"givenName\":\"T.\",\"familyName\":\"Schenker\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Schmidt, C.\",\"nameType\":\"Personal\",\"givenName\":\"C.\",\"familyName\":\"Schmidt\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Van Wezel, J.\",\"nameType\":\"Personal\",\"givenName\":\"J.\",\"familyName\":\"Van Wezel\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Neumair, B.\",\"nameType\":\"Personal\",\"givenName\":\"B.\",\"familyName\":\"Neumair\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Streit, A.\",\"nameType\":\"Personal\",\"givenName\":\"A.\",\"familyName\":\"Streit\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Data management and analysis at the large scale data facility\",\"titleType\":null}],\"publisher\":\"Karlsruhe\",\"container\":{},\"publicationYear\":2011,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Talk\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"PDF\"],\"version\":null,\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/openAccess\"},{\"rights\":\"KITopen License\",\"rightsUri\":\"https://publikationen.bibliothek.kit.edu/kitopen-lizenz\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://foto-kirschner.de/danedane/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:58:26\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://www.dane.de\",\"http://foto-kirschner.de/danedane\"],\"redirectCount\":2,\"downloadLatency\":30},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-13T15:00:03.000Z\",\"registered\":\"2019-03-13T15:04:36.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T07:01:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.awi\",\"type\":\"clients\"}}}},{\"id\":\"10.7954/dbt.1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7954/dbt.1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7954/dbt.1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Simpson, Bart\",\"nameType\":\"Personal\",\"givenName\":\"Bart\",\"familyName\":\"Simpson\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en\",\"title\":\"Band 1\"}],\"publisher\":\"Simpson, Homer\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://zs.thulb.uni-jena.de/receive/jportal_jpvolume_00000001\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://zs.thulb.uni-jena.de/receive/jportal_jpvolume_00000001\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:58:14\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html;charset=UTF-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":784},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-06T05:21:38.000Z\",\"registered\":\"2019-11-06T05:21:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.test-thulb\",\"type\":\"clients\"}}}},{\"id\":\"10.80084/2t6g-r696\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80084/2t6g-r696\",\"identifiers\":[],\"creators\":[{\"name\":\"Forschungsstelle für Energiewirtschaft e.V. \",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"https://www.ffe.de\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":\"de\",\"title\":\"Testtitel\",\"titleType\":null}],\"publisher\":\"Forschungsstelle für Energiewirtschaft\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Abschlussbericht\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.ffe.de/attachments/article/947/20190521_MetaStudieSynFuels.pdf\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://www.ffe.de/attachments/article/947/20190521_MetaStudieSynFuels.pdf\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:58:14\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"application/pdf\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":576},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-04T09:39:15.000Z\",\"registered\":\"2019-12-04T09:39:15.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.test-ffe\",\"type\":\"clients\"}}}},{\"id\":\"10.5165/hawk-hhg/418\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5165/hawk-hhg/418\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5165/hawk-hhg/418\",\"identifierType\":\"DOI\"},{\"identifier\":\"urn:urn:nbn:de:101:1-2019062016093895498758\",\"identifierType\":\"URN\"}],\"creators\":[{\"name\":\"Quadrizius, Johanna Marie\",\"nameType\":\"Personal\",\"givenName\":\"Johanna Marie\",\"familyName\":\"Quadrizius\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Die Wasseraufnahme von kapillaraktiven Baustoffen im Hinblick auf die Ausbildung des Wasserkörpers in die Tiefe\"},{\"title\":\"Water absorption of capillary active building materials in regard to the shaping of the inner wetting front\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Fachhochschule Potsdam\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Conservation science\"}],\"contributors\":[{\"name\":\"HAWK Hildesheim/Holzminden/Göttingen, Hornemann Institut\",\"nameType\":\"Personal\",\"givenName\":\"Hornemann Institut\",\"familyName\":\"HAWK Hildesheim/Holzminden/Göttingen\",\"affiliation\":[],\"contributorType\":\"DataCollector\"}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"ger\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Bachelor Thesis\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[\"187 pages\",\"8.89 MB\"],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-ND 3.0\"}],\"descriptions\":[{\"lang\":null,\"description\":\"Die Auswertung der Prüfung kapillarer Wasseraufnahme mittels Karsten’schen Prüfröhrchen erfolgt nach einer seit Jahren festgelegten Durchfeuchtungsgeometrie. In der praktischen Anwendung erwies sich diese allerdings als fehlerhaft. Ziel der Arbeit ist es neue Erkenntnisse zur Form des Durchfeuchtungskörpers zu gewinnen. Grundlage der Qualifikationsarbeit ist es eine geeignete Methode zur Visualisierung des Wasserkörpers innerhalb des Porengefüges zu ermitteln. Dies erfolgte durch Anfärben des Porenraums mittels Kaliumpermanganatlösung und tomographieartigen Schnitten durch Probekörper. Schwerpunkt der Arbeit ist die Ausdehnung des Wasserkörpers empirisch zu erfassen, Methoden zu vergleichen und grundlegende Zusammenhänge zwischen Porenraum und Wasserkörpergeometrie unterschiedlicher Gesteine besser nachvollziehen zu können. | The evaluation of capillary water absorption using the Karsten tube test is dependent on a wetting theory which has been established many years ago. In the practical application this theory has been proven wrong. This thesis aims to reach new conclusions concerning the form of the wetting body. Finding a method to visualise the wetting body inside a porous system is the base to this bachelor thesis. For that purpose the pore space has been dyed with a potassium permanganate solution and afterwards cut into tomography-like slices. The focus of this thesis was the empirical measurement of the dilatation of the wetting body and in reaching a better understanding of basic correlations between the pore space and geometry of the wetting body.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.hornemann-institut.de/doi/418.php\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://www.hornemann-institut.de/doi/418.php\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:58:14\",\"bodyHasPid\":true,\"citationDoi\":null,\"contentType\":\"text/html; charset=UTF-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":450},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-20T13:59:12.000Z\",\"registered\":\"2019-06-20T13:59:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hawk\",\"type\":\"clients\"}}}},{\"id\":\"10.13154/pq5s-ca92\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.13154/pq5s-ca92\",\"identifiers\":[],\"creators\":[{\"name\":\"Test-Test, Test\",\"nameType\":\"Personal\",\"givenName\":\"Test\",\"familyName\":\"Test-Test\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Testdatensatz\",\"titleType\":null}],\"publisher\":\"Testverlag\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"Testabstract\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://example.org/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://example.org/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:58:14\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=UTF-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":482},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-08T08:33:36.000Z\",\"registered\":\"2019-05-09T08:17:55.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.rubhb\",\"type\":\"clients\"}}}},{\"id\":\"10.70037/opus-65\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70037/opus-65\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70037/opus-65\",\"identifierType\":\"DOI\"},{\"identifier\":\"urn:nbn:de:bsz:753-opus-785\",\"identifierType\":\"URN\"}],\"creators\":[{\"name\":\"Biedermann, Ronnie\",\"nameType\":\"Personal\",\"givenName\":\"Ronnie\",\"familyName\":\"Biedermann\",\"affiliation\":[]},{\"name\":\"Dieterle, Ina\",\"nameType\":\"Personal\",\"givenName\":\"Ina\",\"familyName\":\"Dieterle\",\"affiliation\":[]},{\"name\":\"Fausel, Sabine\",\"nameType\":\"Personal\",\"givenName\":\"Sabine\",\"familyName\":\"Fausel\",\"affiliation\":[]},{\"name\":\"Gehrig, Silke\",\"nameType\":\"Personal\",\"givenName\":\"Silke\",\"familyName\":\"Gehrig\",\"affiliation\":[]},{\"name\":\"Kattai, Thorsten\",\"nameType\":\"Personal\",\"givenName\":\"Thorsten\",\"familyName\":\"Kattai\",\"affiliation\":[]},{\"name\":\"Lorentz, Elvira\",\"nameType\":\"Personal\",\"givenName\":\"Elvira\",\"familyName\":\"Lorentz\",\"affiliation\":[]},{\"name\":\"Neu, Monika\",\"nameType\":\"Personal\",\"givenName\":\"Monika\",\"familyName\":\"Neu\",\"affiliation\":[]},{\"name\":\"Rotter, Sabine\",\"nameType\":\"Personal\",\"givenName\":\"Sabine\",\"familyName\":\"Rotter\",\"affiliation\":[]},{\"name\":\"Wenisch, Anna\",\"nameType\":\"Personal\",\"givenName\":\"Anna\",\"familyName\":\"Wenisch\",\"affiliation\":[]},{\"name\":\"Wieland, Antje\",\"nameType\":\"Personal\",\"givenName\":\"Antje\",\"familyName\":\"Wieland\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"de\",\"title\":\"Beratungsbesuche nach § 37,3 SGB XI: Individuelle Beratungsbedarfe von pflegenden Angehörigen identifizieren - ein Konzept für ambulante Dienste\"}],\"publisher\":\"Test-Verlag\",\"container\":{},\"publicationYear\":2009,\"subjects\":[{\"lang\":\"de\",\"subject\":\"610 Medizin, Gesundheit\",\"schemeUri\":\"https://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[],\"dates\":[{\"date\":\"2015-04-09\",\"dateType\":\"Created\"},{\"date\":\"2009\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Working Paper\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[\"389 KB\"],\"formats\":[\"application/pdf\"],\"version\":null,\"rightsList\":[{\"rights\":\"Veröffentlichungsvertrag ohne Print-on-Demand\"}],\"descriptions\":[{\"lang\":\"de\",\"description\":\"Ziel des Konzepts ist es den individuellen Beratungsbedarf pflegender Angehöriger mittels eines entwickelten Screeninginstruments zu identifizieren.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://opustest.bsz-bw.de/hses/65\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://opustest.bsz-bw.de/hses/65\",\"error\":\"Request Ignored\",\"status\":null,\"checked\":\"2020-04-05 04:58:14\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-02T20:11:19.000Z\",\"registered\":\"2019-05-02T20:11:20.000Z\",\"published\":\"2009\",\"updated\":\"2020-04-23T07:01:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.test-hse\",\"type\":\"clients\"}}}},{\"id\":\"10.5282/ubm/digi.1939\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5282/ubm/digi.1939\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5282/ubm/digi.1939\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"(:Unav)\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Erschröckliche Würckung Des Pulfers; [1759]\"}],\"publisher\":\"Universitätsbibliothek der Ludwig-Maximilians-Universität München\",\"container\":{},\"publicationYear\":2010,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"1759\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Monograph\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"https://creativecommons.org/publicdomain/mark/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://digi.ub.uni-muenchen.de/1939\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://digi.ub.uni-muenchen.de/1939\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:56:13\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-03T13:14:19.000Z\",\"registered\":\"2019-12-03T13:14:35.000Z\",\"published\":\"2010\",\"updated\":\"2020-04-23T07:01:27.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ublmu\",\"type\":\"clients\"}}}},{\"id\":\"10.0133/50978\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0133/50978\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0133/50978\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Ersteller-1557741545191\",\"nameType\":\"Personal\",\"familyName\":\"ersteller-1557741545191\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Dataset A from workspace-1557741271150\"}],\"publisher\":\"herausgeber-1557741545827\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Biology\"}],\"contributors\":[{\"name\":\"Institut Fröhlicher\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2000\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"FIGURE\",\"bibtex\":\"misc\",\"citeproc\":\"graphic\",\"schemaOrg\":\"ImageObject\",\"resourceTypeGeneral\":\"Image\"},\"relatedIdentifiers\":[],\"sizes\":[\"780,8 kB\"],\"formats\":[\"application/zip\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://eng-d-vm04.fiz-karlsruhe.de/en/dataset/MhPUOcsuEtLoyhiL\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://eng-d-vm04.fiz-karlsruhe.de/en/dataset/MhPUOcsuEtLoyhiL\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-05 04:55:56\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-13T10:00:35.000Z\",\"registered\":\"2019-05-13T10:00:36.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.radar\",\"type\":\"clients\"}}}},{\"id\":\"10.0253/tuprints-00007572\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0253/tuprints-00007572\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0253/tuprints-00007572\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"LU, Zheng\",\"nameType\":\"Personal\",\"givenName\":\"Zheng\",\"familyName\":\"LU\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"en\",\"title\":\"CLIENT- SERVER SYSTEM FOR WEB-BASED VISUALIZATION AND ANIMATION OF LEARNING CONTENT\"}],\"publisher\":\"UNSPECIFIED\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Thesis\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC-BY-SA 4.0 International - Creative Commons, Attribution Share-alike\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"lang\":\"en\",\"description\":\"E-learning is an effective means for academic and continuous education nowadays. An important feature of E-learning is using animation to demonstrate the teaching contents. With the increasing popularity of multimedia technology, instructors started to demonstrate the complicated computer algorithms and abstract data structure using multimedia animation. As a result, Algorithm Visualization (AV) is one of the most frequently used tools in E-learning. Numerous researches showed that applying animations to illustrate complex algorithms enables students to understand these algorithms better and faster. But there are also many teachers who oppose the usage of AV in the teaching process. In order to make AV help students better in understanding the topics they need to learn, certain guidelines need to be considered while designing AV animations. After reading and analysing a large number of related papers, four pedagogic theories were selected. These are Epistemic Fidelity, Cognitive Constructivism, Dual Coding and Individual Differences. It is believed that if developers observe these four learning theories when developing AV animation, the quality of AV can be effectively improved. An on-line platform named DLD-VISU for learning and teaching Digital Logic Design was developed based on these four theories. Specific implementation concepts and methods were developed in order to support these theories in DLD-VISU using advanced software engineering and programming techniques. DLD-VISU uses the MVC architectural pattern to achieve the separation of Model, Controller and View and uses the Dependency Injection (DI) method to achieve Inversion of Control (IoC). This can decouple classes and greatly reduce the difficulty of program maintenance and update. In addition, we use the Object Relational Mapping (ORM) technology to replace the traditional JDBC to access database. DLD-VISU is not only able to display animation on web pages, but also serves as an AV development platform. It provides a powerful framework and a rich library of graphical functions. This framework encapsulates many powerful functions such as IoC, ORM and Action dispatcher. Developers can use it to quickly build an AV animation based on the MVC architectural pattern. An extensive library of graphical functions can help developers to draw the front-end animations fast. In order to present the ease-of-use of DLD-VISU, we use it to develop AV animation for different algorithms of binary decision trees as an important class of machine learning classifiers. Another objective of DLD-VISU is to construct unified AV management platform. All the animations on this platform employ the same style and GUI, which can spare the time that students spend to adapt to different AV programs. Furthermore, the platform provides a great amount of management modules that make it very convenient for teachers to publish and manage their own AV programs and perform real-time observation and analysis of student's learning using AV. We conducted a series of tests on this platform, including dividing the students into two groups — one utilized the DLD-VISU platform and the other employed traditional methods, and testing both groups of students with same questions. The results show that DLD-VISU is helpful for improving students' achievements.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://tuprints-dev.ulb.tu-darmstadt.de/id/eprint/7572\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://tuprints-dev.ulb.tu-darmstadt.de/id/eprint/7572\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-05 04:55:32\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-06T10:59:19.000Z\",\"registered\":\"2019-12-06T10:59:19.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:01:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ulbd\",\"type\":\"clients\"}}}},{\"id\":\"10.0174/jx9j-0jvm\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0174/jx9j-0jvm\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0174/jx9j-0jvm\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Rittler, Franz\",\"nameType\":\"Personal\",\"givenName\":\"Franz\",\"familyName\":\"Rittler\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Lebensgeschichte eines ausgedienten Fiacker-Pferdes\"}],\"publisher\":\"bey Joh. Georg Gastl\",\"container\":{},\"publicationYear\":1819,\"subjects\":[{\"subject\":\"ÖFOS 2002, General literature studies\"},{\"subject\":\"ÖFOS 2002, Allgemeine Literaturwissenschaft\"}],\"contributors\":[{\"name\":\" (Ebooks On Demand)\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]},{\"name\":\" (Universitätsbibliothek Wien)\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"1819\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[\"36756027 b\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC 2.0 AT\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/2.0/at\"}],\"descriptions\":[{\"description\":\"Dieser Band ist Teil der historischen Buchbestände der Universitätsbibliothek Wien\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://phaidra.univie.ac.at/o:429172\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://fedora.phaidra.univie.ac.at/fedora/objects/o:429172/methods/bdef:Book/view\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:55:25\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html;charset=UTF-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://phaidra.univie.ac.at/o:429172\",\"https://phaidra.univie.ac.at/view/o:429172\"],\"redirectCount\":2,\"downloadLatency\":507},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-30T16:51:22.000Z\",\"registered\":\"2019-12-30T16:51:23.000Z\",\"published\":\"1819\",\"updated\":\"2020-04-23T07:01:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ubw\",\"type\":\"clients\"}}}},{\"id\":\"10.15771/imejidev.2hf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.15771/imejidev.2hf\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.15771/imejidev.2hf\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Test_User, Test_User_1\",\"nameType\":\"Personal\",\"givenName\":\"Test_User_1\",\"familyName\":\"Test_User\",\"affiliation\":[]},{\"name\":\"Thethird, \",\"nameType\":\"Personal\",\"familyName\":\"Thethird\",\"affiliation\":[]},{\"name\":\"Thesecond, \",\"nameType\":\"Personal\",\"familyName\":\"Thesecond\",\"affiliation\":[]}],\"titles\":[{\"title\":\"2019-07-14 02:26:15.83 3 authors public mode (revised)\"}],\"publisher\":\"Max Planck Society\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://qa-imeji.mpdl.mpg.de/imeji/collection/HyKEJIwy_K7yscwJ\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://qa-imeji.mpdl.mpg.de/imeji/collection/HyKEJIwy_K7yscwJ\",\"error\":\"Request Ignored\",\"status\":null,\"checked\":\"2020-04-05 04:55:13\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-14T00:35:08.000Z\",\"registered\":\"2019-07-14T00:35:08.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.mpdl\",\"type\":\"clients\"}}}},{\"id\":\"10.0143/ipk/gbis/843\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0143/ipk/gbis/843\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0143/ipk/gbis/843\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"IPK Genebank\",\"nameType\":\"Organizational\",\"affiliation\":[{\"name\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"affiliationIdentifier\":\"https://ror.org/02skbsp27\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Triticum aestivum L. var. aestivum, TRI 843\"}],\"publisher\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Plant Genetic Resources for Food and Agriculture (PGRFA)\"}],\"contributors\":[{\"name\":\"Genebank Information System (GBIS)\",\"affiliation\":[{\"name\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"affiliationIdentifier\":\"https://ror.org/02skbsp27\",\"affiliationIdentifierScheme\":\"ROR\"}],\"contributorType\":\"RegistrationAuthority\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-03-04\",\"dateType\":\"Created\",\"dateInformation\":\"Initial date of assigning the DOI\"},{\"date\":\"1947\",\"dateType\":\"Accepted\",\"dateInformation\":\"Date of adding the germplasm accession to the genebank\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"PGRFA material\",\"resourceTypeGeneral\":\"PhysicalObject\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"PGRFA accession of IPK Gatersleben Plant Genetic Resource Taxon: Triticum aestivum L. var. aestivum Accession number: TRI 843 Conserved by: DEU146 Acquisition: 1947 Origin country: SUN Biological status: Traditional cultivar/landrace MLS status: Included AEGIS status: Not included Historic: No\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://apex.ipk-gatersleben.de/apex/f?p=DOI:RESOLVE:::NO:RP:DOI:10.0143/IPK/GBIS/843\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://apex.ipk-gatersleben.de/apex/f?p=DOI:RESOLVE:::NO:RP:DOI:10.0143/IPK/GBIS/843\",\"error\":\"Request Ignored\",\"status\":null,\"checked\":\"2020-04-05 04:55:13\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-16T11:45:17.000Z\",\"registered\":\"2019-12-16T11:45:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:01:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ipk\",\"type\":\"clients\"}}}},{\"id\":\"10.5162/sensoren2019/5.2.4\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5162/sensoren2019/5.2.4\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5162/sensoren2019/5.2.4\",\"identifierType\":\"DOI\"},{\"identifier\":\"978-3-9819376-0-2\",\"identifierType\":\"ISBN\"}],\"creators\":[{\"name\":\"H.-F. Pernau\",\"affiliation\":[]},{\"name\":\"M. El-Safoury\",\"affiliation\":[]},{\"name\":\"M. Dufner\",\"affiliation\":[]},{\"name\":\"C. Weber\",\"affiliation\":[]},{\"name\":\"K. Schmitt\",\"affiliation\":[]},{\"name\":\"J. Wöllenstein\",\"affiliation\":[]},{\"name\":\"B. Willing\",\"affiliation\":[]}],\"titles\":[{\"title\":\"5.2.4 Photoakustisches Gasmesssystem zur Bestimmung des Schwefeldioxidgehaltes in Schiffsabgasen\"}],\"publisher\":\"AMA Service GmbH, Von-Münchhausen-Str. 49, 31515 Wunstorf\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"SO2-Sensorik\"},{\"subject\":\"Gassensorik\"},{\"subject\":\"photoakustischer Sensor\"},{\"subject\":\"maritime Sensorsysteme\"}],\"contributors\":[{\"name\":\"AMA Assocation For Sensors And Measurement, Sophie-Charlotten-Str. 15, 14059 Berlin\",\"nameType\":\"Personal\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\"},{\"name\":\"Informationstechnische Gesellschaft Im VDE (ITG), Frankfurt\",\"nameType\":\"Personal\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\"},{\"name\":\"VDI/VDE-Gesellschaft Mess- Und Automatisierungstechnik (GMA), Düsseldorf\",\"nameType\":\"Personal\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\"}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"deu\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"ConferencePaper\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[\"5 Pages\",\"1.3 MB\"],\"formats\":[\"application/pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Ab dem Jahr 2020 gelten weltweit auf den Ozeanen strengere Grenzwerte für die Emission von SO2 in Schiffsabgasen. Diese können entweder über schwefelarmen Treibstoff oder durch den Einbau von Filteranlagen erreicht werden, wobei in letzteren der SO2-Ausstoß permanent gemessen werden muss. Wir präsentieren erste Feldtest-Messungen eines photoakustischen SO2-Messsystems, das seit August 2018 auf einem Schiff auf der Ostsee unterwegs ist.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost/ama-science.org/doi/10.5162/sensoren2019/5.2.4\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://localhost/ama-science.org/doi/10.5162/sensoren2019/5.2.4\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:54:59\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-25T06:34:45.000Z\",\"registered\":\"2019-06-25T06:34:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ama\",\"type\":\"clients\"}}}},{\"id\":\"10.5445/ir/1000109304\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5445/ir/1000109304\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.5445/ir/1000109304\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Ich\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"michaels beste bilder\"}],\"publisher\":\"Karlsruhe\",\"container\":{},\"publicationYear\":2222,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2222\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"todo\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://localhost/dbkit_master/htdocs/vv/landingpage/1000109304\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://localhost/dbkit_master/htdocs/vv/landingpage/1000109304\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:54:48\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-15T11:26:57.000Z\",\"registered\":\"2019-10-15T11:26:58.000Z\",\"published\":\"2222\",\"updated\":\"2020-04-23T07:01:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.kit\",\"type\":\"clients\"}}}},{\"id\":\"10.15770/darus-454/1\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.15770/darus-454/1\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.15770/darus-454/1\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Kreuter, Anne\",\"nameType\":\"Personal\",\"givenName\":\"Anne\",\"familyName\":\"Kreuter\",\"affiliation\":[{\"name\":\"(University of Stuttgart (Test v3.4))\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"methode.txt\"}],\"publisher\":\"DemoDaRUS\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.15770/darus-454\",\"identifierType\":\"DOI\"},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Kreuter, Anne\",\"nameType\":\"Personal\",\"givenName\":\"Anne\",\"familyName\":\"Kreuter\",\"affiliation\":[{\"name\":\"(University of Stuttgart (Test v3.4))\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"doi:10.15770/darus-454\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\":unav\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://demodarus.izus.uni-stuttgart.de/file.xhtml?persistentId=doi:10.15770/darus-454/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://demodarus.izus.uni-stuttgart.de/file.xhtml?persistentId=doi:10.15770/darus-454/1\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:53:51\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-27T11:40:27.000Z\",\"registered\":\"2019-08-27T11:40:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ubs\",\"type\":\"clients\"}}}},{\"id\":\"10.17169/fudocs_document_000000000221\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.17169/fudocs_document_000000000221\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.17169/fudocs_document_000000000221\",\"identifierType\":\"DOI\"},{\"identifier\":\"3-938369-65-5\",\"identifierType\":\"ISBN\"},{\"identifier\":\"http://dspace.ub.fu-berlin.de/handle/fub188/5356\",\"identifierType\":\"uri\"},{\"identifier\":\"10.17169/FUDOCS_document_000000000221\",\"identifierType\":\"DOI\"},{\"identifier\":\"urn:nbn:de:kobv:188-fudocsdocument000000000221-0\",\"identifierType\":\"URN\"}],\"creators\":[{\"name\":\"Sichtmann, Christina\",\"nameType\":\"Personal\",\"givenName\":\"Christina\",\"familyName\":\"Sichtmann\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Griese, Ilka\",\"nameType\":\"Personal\",\"givenName\":\"Ilka\",\"familyName\":\"Griese\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Klein, Maren\",\"nameType\":\"Personal\",\"givenName\":\"Maren\",\"familyName\":\"Klein\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Determinants of the international performance of services a conceptual model\"}],\"publisher\":\"Freie Universität Berlin\",\"container\":{},\"publicationYear\":2007,\"subjects\":[{\"subject\":\"Services, export performance, internationalization, success factors\"},{\"subject\":\"330 Wirtschaft\",\"subjectScheme\":\"ddc\"},{\"subject\":\"330 Economics\",\"subjectScheme\":\"ddc\"},{\"subject\":\"ddc:330\",\"subjectScheme\":\"ddc\"}],\"contributors\":[{\"name\":\"Universitätsbibliothek Der FU Berlin\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"Universitätsbibliothek Der FU Berlin\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]},{\"name\":\"Universität / Fachbereich Wirtschaftswissenschaft\",\"nameType\":\"Personal\",\"affiliation\":[],\"contributorType\":\"Editor\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2018-04-10\",\"dateType\":\"Accepted\"},{\"date\":\"2007\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Buch\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[\"20 S.\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://www.fu-berlin.de/sites/forschungsdaten/rechtliches/Nutzungsbedingungen\"}],\"descriptions\":[{\"description\":\"Countless determinants of export success that are supposed to help managers reduce the failure rates of export ventures have been identified. Despite this abundance of studies, however, little is known about the determinants of the internationalization success of services. In this paper, based on prior studies focusing primarily on manufactured goods and the key characteristics distinguishing services from goods, a comprehensive conceptual model for the successful internationalization of services is developed.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dspace.ub.fu-berlin.de/handle/fub188/5356\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://dspace.ub.fu-berlin.de/handle/fub188/5356\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:53:50\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-04T12:35:08.000Z\",\"registered\":\"2019-07-04T12:35:09.000Z\",\"published\":\"2007\",\"updated\":\"2020-04-23T07:01:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.fuub\",\"type\":\"clients\"}}}},{\"id\":\"10.14278/rodaretest.201\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14278/rodaretest.201\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14278/rodaretest.201\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://rodare-test.hzdr.de/record/202\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Juckeland, Dr. Guido (FWCC) - 4930\",\"nameType\":\"Personal\",\"givenName\":\"Dr. Guido (FWCC) - 4930\",\"familyName\":\"Juckeland\",\"affiliation\":[]}],\"titles\":[{\"title\":\"jucke/latex-git-examample: My LaTeX Git Example\"}],\"publisher\":\"Rodare\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-16\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"https://gitlab.hzdr.de/jucke/latex-git-examample/tree/v0.1\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"HasVersion\",\"relatedIdentifier\":\"10.14278/rodaretest.202\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"v0.1\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/openAccess\"}],\"descriptions\":[{\"description\":\"No description available.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://rodare-test.hzdr.de/record/201\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://rodare-test.hzdr.de/record/201\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-05 04:53:10\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":1,\"versionOfCount\":0,\"created\":\"2019-01-16T13:06:51.000Z\",\"registered\":\"2019-01-16T13:06:52.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:01:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hzdr\",\"type\":\"clients\"}}}},{\"id\":\"10.4230/lipics.stacs-new.2020.58\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.4230/lipics.stacs-new.2020.58\",\"identifiers\":[],\"creators\":[{\"name\":\"Aboulker, Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Pierre\",\"familyName\":\"Aboulker\",\"affiliation\":[{\"name\":\"DI/ENS, PSL University, Paris, France\"}],\"nameIdentifiers\":[]},{\"name\":\"Bonnet, Édouard\",\"nameType\":\"Personal\",\"givenName\":\"Édouard\",\"familyName\":\"Bonnet\",\"affiliation\":[{\"name\":\"Univ Lyon, CNRS, ENS de Lyon, Université Claude Bernard Lyon 1, LIP UMR5668, France\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1653-5822\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Kim, Eun Jung\",\"nameType\":\"Personal\",\"givenName\":\"Eun Jung\",\"familyName\":\"Kim\",\"affiliation\":[{\"name\":\"Université Paris-Dauphine, PSL University, CNRS UMR7243, LAMSADE, Paris, France\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6824-0516\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Sikora, Florian\",\"nameType\":\"Personal\",\"givenName\":\"Florian\",\"familyName\":\"Sikora\",\"affiliation\":[{\"name\":\"Université Paris-Dauphine, PSL University, CNRS UMR7243, LAMSADE, Paris, France\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-2670-6258\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":\"en\",\"title\":\"Grundy Coloring & Friends, Half-Graphs, Bicliques\"}],\"publisher\":\"Schloss Dagstuhl - Leibniz-Zentrum für Informatik\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"lang\":\"en\",\"subject\":\"Grundy coloring\"},{\"lang\":\"en\",\"subject\":\"parameterized complexity\"},{\"lang\":\"en\",\"subject\":\"ETH lower bounds\"},{\"lang\":\"en\",\"subject\":\"K_{t\"},{\"lang\":\"en\",\"subject\":\"t}-free graphs\"},{\"lang\":\"en\",\"subject\":\"half-graphs\"}],\"contributors\":[{\"name\":\"Christophe Paul\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"CNRS, Université de Montpellier, France\"}],\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6519-975X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Markus Bläser\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"Universität des Saarlandes, Saarbrücken, Germany\"}],\"contributorType\":\"Editor\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"en\",\"types\":{\"bibtex\":\"inproceedings\",\"resourceType\":\"Conference Paper\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsVersionOf\",\"relatedIdentifier\":\"arXiv:2001.03794\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.4230/LIPIcs.STACS-new.2020\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-95977-140-5\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"1868-8969\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1002/jgt.22252\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"arXiv:2001.03794\",\"relatedIdentifierType\":\"arXiv\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1145/210332.210337\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1016/j.dam.2017.12.022\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1093/comjnl/bxm086\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1007/11847250_22\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1016/S0022-0000(03)00073-4\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1137/15M1032077\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1016/j.disc.2016.03.011\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1002/jgt.3190110205\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://tel.archives-ouvertes.fr/tel-01136691\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1145/3051095\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1186/s13173-015-0036-x\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1007/s00453-011-9604-4\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1007/s00453-011-9604-4\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1007/11847250_14\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1109/FOCS.2007.50\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.4086/toc.2010.v006a005\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1007/978-3-662-48350-3_72\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"arXiv:1504.05476\",\"relatedIdentifierType\":\"arXiv\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1109/SFCS.1995.492475\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1016/j.jcss.2016.09.012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1137/S0895480194275825\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1007/978-3-642-33090-2_69\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1016/j.disc.2005.06.044\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"lang\":\"en\",\"rights\":\"Creative Commons Attribution 3.0 Unported license\",\"rightsUri\":\"https://creativecommons.org/licenses/by/3.0/legalcode\"}],\"descriptions\":[{\"lang\":\"en\",\"description\":\"The first-fit coloring is a heuristic that assigns to each vertex, arriving in a specified order σ, the smallest available color. The problem Grundy Coloring asks how many colors are needed for the most adversarial vertex ordering σ, i.e., the maximum number of colors that the first-fit coloring requires over all possible vertex orderings. Since its inception by Grundy in 1939, Grundy Coloring has been examined for its structural and algorithmic aspects. A brute-force f(k)n^{2^{k-1}}-time algorithm for Grundy Coloring on general graphs is not difficult to obtain, where k is the number of colors required by the most adversarial vertex ordering. It was asked several times whether the dependency on k in the exponent of n can be avoided or reduced, and its answer seemed elusive until now. We prove that Grundy Coloring is W[1]-hard and the brute-force algorithm is essentially optimal under the Exponential Time Hypothesis, thus settling this question by the negative. \\r\\nThe key ingredient in our W[1]-hardness proof is to use so-called half-graphs as a building block to transmit a color from one vertex to another. Leveraging the half-graphs, we also prove that b-Chromatic Core is W[1]-hard, whose parameterized complexity was posed as an open question by Panolan et al. [JCSS '17]. A natural follow-up question is, how the parameterized complexity changes in the absence of (large) half-graphs. We establish fixed-parameter tractability on K_{t,t}-free graphs for b-Chromatic Core and Partial Grundy Coloring, making a step toward answering this question. The key combinatorial lemma underlying the tractability result might be of independent interest.\",\"descriptionType\":\"Abstract\"},{\"lang\":\"en\",\"description\":\"LIPIcs, Vol. 154, 37th International Symposium on Theoretical Aspects of Computer Science (STACS 2020), pages 58:1-58:18\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://drops.dagstuhl.de/opus/volltexte/2020/12263/\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://drops.dagstuhl.de/opus/volltexte/2020/12263/\",\"error\":\"\",\"status\":404,\"checked\":\"2020-04-05 04:53:08\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=iso-8859-1\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":160},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":22,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-04T14:30:22.000Z\",\"registered\":\"2020-03-04T14:30:27.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:01:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.dagst\",\"type\":\"clients\"}}}},{\"id\":\"10.0313/dgs.meinedgs-1.0-video-1414503\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0313/dgs.meinedgs-1.0-video-1414503\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0313/dgs.meinedgs-1.0-video-1414503\",\"identifierType\":\"DOI\"},{\"identifier\":\"1414503\",\"identifierType\":\"internal ID\"}],\"creators\":[{\"name\":\"Hanke, Thomas\",\"nameType\":\"Personal\",\"givenName\":\"Thomas\",\"familyName\":\"Hanke\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-7356-8973\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"König, Susanne\",\"nameType\":\"Personal\",\"givenName\":\"Susanne\",\"familyName\":\"König\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Konrad, Reiner\",\"nameType\":\"Personal\",\"givenName\":\"Reiner\",\"familyName\":\"Konrad\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7046-2548\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Langer, Gabriele\",\"nameType\":\"Personal\",\"givenName\":\"Gabriele\",\"familyName\":\"Langer\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Barbeito Rey-Geißler, Patricia\",\"nameType\":\"Personal\",\"givenName\":\"Patricia\",\"familyName\":\"Barbeito Rey-Geißler\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Blanck, Dolly\",\"nameType\":\"Personal\",\"givenName\":\"Dolly\",\"familyName\":\"Blanck\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Goldschmidt, Stefan\",\"nameType\":\"Personal\",\"givenName\":\"Stefan\",\"familyName\":\"Goldschmidt\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Hofmann, Ilona\",\"nameType\":\"Personal\",\"givenName\":\"Ilona\",\"familyName\":\"Hofmann\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Hong, Sung-Eun\",\"nameType\":\"Personal\",\"givenName\":\"Sung-Eun\",\"familyName\":\"Hong\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Jeziorski, Olga\",\"nameType\":\"Personal\",\"givenName\":\"Olga\",\"familyName\":\"Jeziorski\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Kleyboldt, Thimo\",\"nameType\":\"Personal\",\"givenName\":\"Thimo\",\"familyName\":\"Kleyboldt\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"König, Lutz\",\"nameType\":\"Personal\",\"givenName\":\"Lutz\",\"familyName\":\"König\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Matthes, Silke\",\"nameType\":\"Personal\",\"givenName\":\"Silke\",\"familyName\":\"Matthes\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Nishio, Rie\",\"nameType\":\"Personal\",\"givenName\":\"Rie\",\"familyName\":\"Nishio\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Rathmann, Christian\",\"nameType\":\"Personal\",\"givenName\":\"Christian\",\"familyName\":\"Rathmann\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Salden, Uta\",\"nameType\":\"Personal\",\"givenName\":\"Uta\",\"familyName\":\"Salden\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Wagner, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Wagner\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Worseck, Satu\",\"nameType\":\"Personal\",\"givenName\":\"Satu\",\"familyName\":\"Worseck\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"de\",\"title\":\"Behörden (MEINE DGS. Öffentliches Korpus der Deutschen Gebärdensprache, 1. Release)\"}],\"publisher\":\"Universität Hamburg\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.0313/dgs.meinedgs-1.0\",\"identifierType\":\"DOI\"},\"publicationYear\":2018,\"subjects\":[{\"lang\":\"de\",\"subject\":\"Finanzen\"},{\"lang\":\"de\",\"subject\":\"Finanzen: Bank\"},{\"lang\":\"de\",\"subject\":\"Finanzen: Geld\"},{\"lang\":\"de\",\"subject\":\"Finanzen: Versicherung\"},{\"lang\":\"de\",\"subject\":\"Gesellschaft: Kriminalität\"},{\"lang\":\"de\",\"subject\":\"Gesellschaft: Verbrechen\"},{\"lang\":\"de\",\"subject\":\"Kommunikation: Notruf\"},{\"lang\":\"de\",\"subject\":\"Recht und Gesetz: Kriminalität\"},{\"lang\":\"de\",\"subject\":\"Recht und Gesetz: Polizei\"},{\"lang\":\"de\",\"subject\":\"Recht und Gesetz: Verbrechen\"},{\"lang\":\"de\",\"subject\":\"Arbeit und Beruf: Feuerwehr\"},{\"lang\":\"de\",\"subject\":\"Gebärdensprache: Dolmetschen\"},{\"lang\":\"de\",\"subject\":\"Kommunikation: Dolmetschen\"},{\"lang\":\"de\",\"subject\":\"Kommunikation: Fax\"},{\"lang\":\"de\",\"subject\":\"Kommunikation: Notruf\"},{\"lang\":\"de\",\"subject\":\"Körperpflege, Gesundheit, Krankheit: Krankheit\"},{\"lang\":\"de\",\"subject\":\"Recht und Gesetz: Polizei\"},{\"lang\":\"de\",\"subject\":\"Terror, Krieg, Katastrophen: Feuerwehr\"},{\"lang\":\"de\",\"subject\":\"Arbeit und Beruf: Rente\"},{\"lang\":\"de\",\"subject\":\"Behörden\"},{\"lang\":\"de\",\"subject\":\"Finanzen: Rente\"},{\"lang\":\"de\",\"subject\":\"Gebärdensprache: Dolmetschen\"},{\"lang\":\"de\",\"subject\":\"Kommunikation: Dolmetschen\"},{\"lang\":\"de\",\"subject\":\"Kommunikation: Kommunikation mit Hörenden\"},{\"lang\":\"de\",\"subject\":\"Körperpflege, Gesundheit, Krankheit: Arztbesuch\"},{\"lang\":\"de\",\"subject\":\"Körperpflege, Gesundheit, Krankheit: Krankheit\"}],\"contributors\":[],\"dates\":[{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":\"gsg\",\"types\":{\"ris\":\"MPCT\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"MediaObject\",\"resourceType\":\"Video\",\"resourceTypeGeneral\":\"Audiovisual\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.0313/dgs.meinedgs-1.0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"video/mp4\",\"vtt\"],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[{\"lang\":\"de\",\"description\":\"Video und Transkription für einen Text aus dem DGS-Korpus Release 1.0: Behörden (Arbeit und Beruf: Feuerwehr, Rente – Behörden – Finanzen: Bank, Geld, Rente, Versicherung – Gebärdensprache: Dolmetschen, Dolmetschen – Gesellschaft: Kriminalität, Verbrechen – Kommunikation: Dolmetschen, Dolmetschen, Fax, Kommunikation mit Hörenden, Notruf, Notruf – Körperpflege, Gesundheit, Krankheit: Arztbesuch, Krankheit, Krankheit – Recht und Gesetz: Kriminalität, Polizei, Polizei, Verbrechen – Terror, Krieg, Katastrophen: Feuerwehr).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"funderName\":\"Akademie der Wissenschaften in Hamburg\",\"awardNumber\":\"I.A.21\"}],\"url\":\"https://www.sign-lang.uni-hamburg.de/meinedgs/landing_pages/meinedgs/1.0/dgs-1.0-1414.html\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://www.sign-lang.uni-hamburg.de/meinedgs/landing_pages/meinedgs/1.0/dgs-1.0-1414.html\",\"error\":\"\",\"status\":404,\"checked\":\"2020-04-05 04:53:07\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=UTF-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":45},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-09-25T09:45:05.000Z\",\"registered\":\"2019-09-25T09:45:06.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:01:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.fdmuh\",\"type\":\"clients\"}}}},{\"id\":\"10.15496/publikation-22860\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.15496/publikation-22860\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.15496/publikation-22860\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://hdl.handle.net/10900/81467\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Kyzirakos, Christina\",\"nameType\":\"Personal\",\"givenName\":\"Christina\",\"familyName\":\"Kyzirakos\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Häufig erkannte EBV-spezifische CD4+ T-Zellepitope für eine optimierte Immuntherapie bei EBV-assoziierten Erkrankungen\"}],\"publisher\":\"Universitätsbibliothek Tübingen\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[{\"name\":\"Universitätsbibliothek Tübingen\",\"affiliation\":[]},{\"name\":\"Universitätsbibliothek Tübingen\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2018-09-04\",\"dateType\":\"Issued\"},{\"date\":\"2018-09-04\",\"dateType\":\"Available\"},{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"DE-de\",\"types\":{\"ris\":\"THES\",\"bibtex\":\"phdthesis\",\"citeproc\":\"thesis\",\"schemaOrg\":\"Thesis\",\"resourceType\":\"Dissertation\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://tst-publikationen.uni-tuebingen.de/xmlui/handle/10900/81467\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://tst-publikationen.uni-tuebingen.de/xmlui/handle/10900/81467\",\"error\":\"Request Ignored\",\"status\":null,\"checked\":\"2020-04-05 04:52:51\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-09-04T23:01:12.000Z\",\"registered\":\"2018-09-04T23:03:54.000Z\",\"published\":\"2013\",\"updated\":\"2020-04-23T07:00:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ubtdois\",\"type\":\"clients\"}}}},{\"id\":\"10.01234/t35t-37\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.01234/t35t-37\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.01234/t35t-37\",\"identifierType\":\"DOI\"},{\"identifier\":\"http://rdtest.hhu.de/handle/entry/54\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Knipprath, Nina\",\"nameType\":\"Personal\",\"givenName\":\"Nina\",\"familyName\":\"Knipprath\",\"affiliation\":[]}],\"titles\":[{\"title\":\"DDC Norwegian\"}],\"publisher\":\"Heinrich-Heine-Universität Düsseldorf\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"ddc\"},{\"subject\":\"fonetikk\",\"subjectScheme\":\"ddc\"}],\"contributors\":[{\"name\":\"Heinrich-Heine-Universit�T D�Sseldorf\",\"affiliation\":[]},{\"name\":\"Heinrich-Heine-Universit�T D�Sseldorf\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-03-26\",\"dateType\":\"Accepted\"},{\"date\":\"2019-03-26\",\"dateType\":\"Available\"},{\"date\":\"2019-03-26\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC0 1.0 Universal\"},{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Tetststfasdfsadf\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://rdtest.hhu.de/handle/entry/54\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://rdtest.hhu.de/handle/entry/54\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:50:57\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-26T12:02:30.000Z\",\"registered\":\"2019-03-26T12:02:52.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.zimtest\",\"type\":\"clients\"}}}},{\"id\":\"10.0247/fordatistest/12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0247/fordatistest/12\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0247/fordatistest/12\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://test-fordatis.fraunhofer.de/handle/fordatis/94\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Fruehauf, Tobias\",\"nameType\":\"Personal\",\"givenName\":\"Tobias\",\"familyName\":\"Fruehauf\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Creative Commons Attribution NonCommercial 4.0 (CC BY-NC)\"}],\"publisher\":\"Fraunhofer-Gesellschaft\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Fraunhofer-Gesellschaft\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"Fraunhofer-Gesellschaft\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-10-17\",\"dateType\":\"Accepted\"},{\"date\":\"2019-10-17\",\"dateType\":\"Available\"},{\"date\":\"2019-01-13\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://test-fordatis.fraunhofer.de/handle/fordatis/94\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://test-fordatis.fraunhofer.de/handle/fordatis/94\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:50:57\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-18T01:30:45.000Z\",\"registered\":\"2019-10-18T01:31:04.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:00:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.fraunirb\",\"type\":\"clients\"}}}},{\"id\":\"10.0180/oparadev-36\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0180/oparadev-36\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0180/oparadev-36\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fritzsche, Stefan\",\"nameType\":\"Personal\",\"givenName\":\"Stefan\",\"familyName\":\"Fritzsche\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test Ingest of oa item to test the doi registration\"}],\"publisher\":\"Technische Universität Dresden\",\"container\":{},\"publicationYear\":2018,\"subjects\":[{\"subject\":\"Information Technology\"}],\"contributors\":[{\"name\":\"Zentrum Für Informationsdienste Und Hochleistungsrechnen (ZIH)\",\"affiliation\":[]},{\"name\":\"Zentrum Für Informationsdienste Und Hochleistungsrechnen (ZIH)\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2018-05-25\",\"dateType\":\"Accepted\"},{\"date\":\"2018-05-25\",\"dateType\":\"Available\"},{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Text\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC-BY-4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://oparadev.zih.tu-dresden.de/xmlui/handle/123456789/209\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://oparadev.zih.tu-dresden.de/xmlui/handle/123456789/209\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-05 04:50:57\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-05-26T10:00:08.000Z\",\"registered\":\"2018-05-26T10:00:21.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:00:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.tud\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":34769,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":30371},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":4039},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":359}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":7825},{\"id\":\"other\",\"title\":\"Other\",\"count\":3605},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":1949},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1001},{\"id\":\"image\",\"title\":\"Image\",\"count\":607},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":306},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":158},{\"id\":\"software\",\"title\":\"Software\",\"count\":27},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":20},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":4},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3311},{\"id\":\"2019\",\"title\":\"2019\",\"count\":15226},{\"id\":\"2018\",\"title\":\"2018\",\"count\":14102},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1152},{\"id\":\"2016\",\"title\":\"2016\",\"count\":203},{\"id\":\"2015\",\"title\":\"2015\",\"count\":129},{\"id\":\"2014\",\"title\":\"2014\",\"count\":507},{\"id\":\"2013\",\"title\":\"2013\",\"count\":123},{\"id\":\"2012\",\"title\":\"2012\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2}],\"published\":[{\"id\":\"2222\",\"title\":\"2222\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2099\",\"title\":\"2099\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2024\",\"title\":\"2024\",\"count\":1},{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2022\",\"title\":\"2022\",\"count\":22},{\"id\":\"2021\",\"title\":\"2021\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":3350},{\"id\":\"2019\",\"title\":\"2019\",\"count\":3939},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1317},{\"id\":\"2017\",\"title\":\"2017\",\"count\":652},{\"id\":\"2016\",\"title\":\"2016\",\"count\":1022},{\"id\":\"2015\",\"title\":\"2015\",\"count\":975},{\"id\":\"2014\",\"title\":\"2014\",\"count\":704},{\"id\":\"2013\",\"title\":\"2013\",\"count\":718},{\"id\":\"2012\",\"title\":\"2012\",\"count\":620},{\"id\":\"2011\",\"title\":\"2011\",\"count\":370},{\"id\":\"2010\",\"title\":\"2010\",\"count\":482},{\"id\":\"2009\",\"title\":\"2009\",\"count\":438},{\"id\":\"2008\",\"title\":\"2008\",\"count\":369},{\"id\":\"2007\",\"title\":\"2007\",\"count\":200},{\"id\":\"2006\",\"title\":\"2006\",\"count\":174},{\"id\":\"2005\",\"title\":\"2005\",\"count\":157},{\"id\":\"2004\",\"title\":\"2004\",\"count\":151},{\"id\":\"2003\",\"title\":\"2003\",\"count\":122},{\"id\":\"2002\",\"title\":\"2002\",\"count\":121},{\"id\":\"2001\",\"title\":\"2001\",\"count\":103},{\"id\":\"2000\",\"title\":\"2000\",\"count\":310},{\"id\":\"1999\",\"title\":\"1999\",\"count\":13},{\"id\":\"1998\",\"title\":\"1998\",\"count\":9},{\"id\":\"1997\",\"title\":\"1997\",\"count\":2},{\"id\":\"1996\",\"title\":\"1996\",\"count\":3},{\"id\":\"1995\",\"title\":\"1995\",\"count\":2},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3},{\"id\":\"1993\",\"title\":\"1993\",\"count\":1},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2},{\"id\":\"1991\",\"title\":\"1991\",\"count\":4},{\"id\":\"1990\",\"title\":\"1990\",\"count\":973},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1},{\"id\":\"1985\",\"title\":\"1985\",\"count\":2},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1},{\"id\":\"1983\",\"title\":\"1983\",\"count\":2},{\"id\":\"1982\",\"title\":\"1982\",\"count\":2},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1},{\"id\":\"1980\",\"title\":\"1980\",\"count\":2},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1},{\"id\":\"1973\",\"title\":\"1973\",\"count\":1},{\"id\":\"1963\",\"title\":\"1963\",\"count\":1},{\"id\":\"1958\",\"title\":\"1958\",\"count\":1},{\"id\":\"1957\",\"title\":\"1957\",\"count\":1},{\"id\":\"1953\",\"title\":\"1953\",\"count\":1},{\"id\":\"1950\",\"title\":\"1950\",\"count\":1},{\"id\":\"1948\",\"title\":\"1948\",\"count\":1},{\"id\":\"1947\",\"title\":\"1947\",\"count\":4},{\"id\":\"1943\",\"title\":\"1943\",\"count\":1},{\"id\":\"1941\",\"title\":\"1941\",\"count\":1},{\"id\":\"1940\",\"title\":\"1940\",\"count\":3},{\"id\":\"1939\",\"title\":\"1939\",\"count\":3},{\"id\":\"1938\",\"title\":\"1938\",\"count\":5},{\"id\":\"1937\",\"title\":\"1937\",\"count\":6},{\"id\":\"1936\",\"title\":\"1936\",\"count\":1},{\"id\":\"1935\",\"title\":\"1935\",\"count\":1},{\"id\":\"1934\",\"title\":\"1934\",\"count\":7},{\"id\":\"1933\",\"title\":\"1933\",\"count\":8},{\"id\":\"1932\",\"title\":\"1932\",\"count\":4},{\"id\":\"1931\",\"title\":\"1931\",\"count\":7},{\"id\":\"1930\",\"title\":\"1930\",\"count\":15},{\"id\":\"1929\",\"title\":\"1929\",\"count\":7},{\"id\":\"1928\",\"title\":\"1928\",\"count\":166},{\"id\":\"1927\",\"title\":\"1927\",\"count\":9},{\"id\":\"1926\",\"title\":\"1926\",\"count\":11},{\"id\":\"1925\",\"title\":\"1925\",\"count\":17},{\"id\":\"1924\",\"title\":\"1924\",\"count\":9},{\"id\":\"1923\",\"title\":\"1923\",\"count\":16},{\"id\":\"1922\",\"title\":\"1922\",\"count\":6},{\"id\":\"1921\",\"title\":\"1921\",\"count\":14},{\"id\":\"1920\",\"title\":\"1920\",\"count\":16},{\"id\":\"1919\",\"title\":\"1919\",\"count\":12},{\"id\":\"1918\",\"title\":\"1918\",\"count\":11},{\"id\":\"1917\",\"title\":\"1917\",\"count\":13},{\"id\":\"1916\",\"title\":\"1916\",\"count\":10},{\"id\":\"1915\",\"title\":\"1915\",\"count\":10},{\"id\":\"1914\",\"title\":\"1914\",\"count\":10},{\"id\":\"1913\",\"title\":\"1913\",\"count\":17},{\"id\":\"1912\",\"title\":\"1912\",\"count\":25},{\"id\":\"1911\",\"title\":\"1911\",\"count\":31},{\"id\":\"1910\",\"title\":\"1910\",\"count\":22},{\"id\":\"1909\",\"title\":\"1909\",\"count\":33},{\"id\":\"1908\",\"title\":\"1908\",\"count\":28},{\"id\":\"1907\",\"title\":\"1907\",\"count\":22},{\"id\":\"1906\",\"title\":\"1906\",\"count\":22},{\"id\":\"1905\",\"title\":\"1905\",\"count\":20},{\"id\":\"1904\",\"title\":\"1904\",\"count\":26},{\"id\":\"1903\",\"title\":\"1903\",\"count\":30},{\"id\":\"1902\",\"title\":\"1902\",\"count\":31},{\"id\":\"1901\",\"title\":\"1901\",\"count\":28},{\"id\":\"1900\",\"title\":\"1900\",\"count\":18},{\"id\":\"1899\",\"title\":\"1899\",\"count\":31},{\"id\":\"1898\",\"title\":\"1898\",\"count\":31},{\"id\":\"1897\",\"title\":\"1897\",\"count\":21},{\"id\":\"1896\",\"title\":\"1896\",\"count\":33},{\"id\":\"1895\",\"title\":\"1895\",\"count\":25},{\"id\":\"1894\",\"title\":\"1894\",\"count\":31},{\"id\":\"1893\",\"title\":\"1893\",\"count\":29},{\"id\":\"1892\",\"title\":\"1892\",\"count\":22},{\"id\":\"1891\",\"title\":\"1891\",\"count\":27},{\"id\":\"1890\",\"title\":\"1890\",\"count\":21},{\"id\":\"1889\",\"title\":\"1889\",\"count\":25},{\"id\":\"1888\",\"title\":\"1888\",\"count\":21},{\"id\":\"1887\",\"title\":\"1887\",\"count\":22},{\"id\":\"1886\",\"title\":\"1886\",\"count\":33},{\"id\":\"1885\",\"title\":\"1885\",\"count\":30},{\"id\":\"1884\",\"title\":\"1884\",\"count\":27},{\"id\":\"1883\",\"title\":\"1883\",\"count\":32},{\"id\":\"1882\",\"title\":\"1882\",\"count\":21},{\"id\":\"1881\",\"title\":\"1881\",\"count\":23},{\"id\":\"1880\",\"title\":\"1880\",\"count\":24},{\"id\":\"1879\",\"title\":\"1879\",\"count\":7},{\"id\":\"1878\",\"title\":\"1878\",\"count\":15},{\"id\":\"1877\",\"title\":\"1877\",\"count\":18},{\"id\":\"1876\",\"title\":\"1876\",\"count\":14},{\"id\":\"1875\",\"title\":\"1875\",\"count\":14},{\"id\":\"1874\",\"title\":\"1874\",\"count\":16},{\"id\":\"1873\",\"title\":\"1873\",\"count\":18},{\"id\":\"1872\",\"title\":\"1872\",\"count\":7},{\"id\":\"1871\",\"title\":\"1871\",\"count\":4},{\"id\":\"1870\",\"title\":\"1870\",\"count\":18},{\"id\":\"1869\",\"title\":\"1869\",\"count\":8},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":13},{\"id\":\"1866\",\"title\":\"1866\",\"count\":14},{\"id\":\"1865\",\"title\":\"1865\",\"count\":13},{\"id\":\"1864\",\"title\":\"1864\",\"count\":13},{\"id\":\"1863\",\"title\":\"1863\",\"count\":21},{\"id\":\"1862\",\"title\":\"1862\",\"count\":16},{\"id\":\"1861\",\"title\":\"1861\",\"count\":16},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":3},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":11},{\"id\":\"1856\",\"title\":\"1856\",\"count\":7},{\"id\":\"1855\",\"title\":\"1855\",\"count\":22},{\"id\":\"1854\",\"title\":\"1854\",\"count\":9},{\"id\":\"1853\",\"title\":\"1853\",\"count\":7},{\"id\":\"1852\",\"title\":\"1852\",\"count\":9},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":8},{\"id\":\"1849\",\"title\":\"1849\",\"count\":6},{\"id\":\"1848\",\"title\":\"1848\",\"count\":9},{\"id\":\"1847\",\"title\":\"1847\",\"count\":7},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":12},{\"id\":\"1844\",\"title\":\"1844\",\"count\":21},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":15},{\"id\":\"1841\",\"title\":\"1841\",\"count\":6},{\"id\":\"1840\",\"title\":\"1840\",\"count\":11},{\"id\":\"1839\",\"title\":\"1839\",\"count\":11},{\"id\":\"1838\",\"title\":\"1838\",\"count\":7},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":10},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":3},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":5},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":9},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":7},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":5},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":10},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":5},{\"id\":\"1813\",\"title\":\"1813\",\"count\":5},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":5},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":1},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":3},{\"id\":\"1805\",\"title\":\"1805\",\"count\":4},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":52},{\"id\":\"1799\",\"title\":\"1799\",\"count\":2},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":6},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":4},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":4},{\"id\":\"1775\",\"title\":\"1775\",\"count\":3},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":3},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":1},{\"id\":\"1766\",\"title\":\"1766\",\"count\":2},{\"id\":\"1765\",\"title\":\"1765\",\"count\":4},{\"id\":\"1763\",\"title\":\"1763\",\"count\":2},{\"id\":\"1761\",\"title\":\"1761\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":1},{\"id\":\"1758\",\"title\":\"1758\",\"count\":1},{\"id\":\"1757\",\"title\":\"1757\",\"count\":3},{\"id\":\"1756\",\"title\":\"1756\",\"count\":2},{\"id\":\"1755\",\"title\":\"1755\",\"count\":3},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1750\",\"title\":\"1750\",\"count\":4},{\"id\":\"1749\",\"title\":\"1749\",\"count\":1},{\"id\":\"1748\",\"title\":\"1748\",\"count\":1},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":3},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":3},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":3},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1739\",\"title\":\"1739\",\"count\":3},{\"id\":\"1738\",\"title\":\"1738\",\"count\":1},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":1},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":3},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":2},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":2},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":2},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":2},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":1},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":1},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2309},{\"id\":\"2019\",\"title\":\"2019\",\"count\":13799},{\"id\":\"2018\",\"title\":\"2018\",\"count\":13403},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1030},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2015\",\"title\":\"2015\",\"count\":45},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":34769}],\"clients\":[{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"tib.ulbd\",\"title\":\"Universität- und Landesbibliothek Darmstadt\",\"count\":4444},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":4299},{\"id\":\"tib.radar\",\"title\":\"RADAR Projekt\",\"count\":2707},{\"id\":\"tib.ubw\",\"title\":\"Universität Wien Bibliothek und Archiv\",\"count\":2468},{\"id\":\"tib.ublmu\",\"title\":\"Universitätsbibliothek München\",\"count\":2220},{\"id\":\"tib.awi\",\"title\":\"Alfred Wegener Institute\",\"count\":1428},{\"id\":\"tib.ipk\",\"title\":\"IPK Gatersleben\",\"count\":1006},{\"id\":\"tib.tudo\",\"title\":\"Technische Universität Dortmund\",\"count\":932},{\"id\":\"tib.hebis\",\"title\":\"Goethe-Universität Frankfurt\",\"count\":854},{\"id\":\"tib.tuhh\",\"title\":\"Universitätsbibliothek der TU Hamburg\",\"count\":604},{\"id\":\"tib.ldeo\",\"title\":\"LDEO - Lamont-Doherty Earth Observatory, Columbia University\",\"count\":569},{\"id\":\"tib.fuub\",\"title\":\"Universitätsbibliothek der FU Berlin Hochschulschriftenstelle u. Dokumentenserver\",\"count\":321},{\"id\":\"tib.ubs\",\"title\":\"Universität Stuttgart - IZUS/UB, Holzgartenstraße 16, 70174 Stuttgart,\",\"count\":233},{\"id\":\"tib.hzdr\",\"title\":\"Helmholtz-Zentrum Dresden-Rossendorf\",\"count\":159}],\"affiliations\":[{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/00f2yqf98\",\"title\":\"Hannover Medical School\",\"count\":1},{\"id\":\"ror.org/0304hq317\",\"title\":\"University of Hannover\",\"count\":1},{\"id\":\"ror.org/04zc7p361\",\"title\":\"University of Kassel\",\"count\":1},{\"id\":\"ror.org/05591te55\",\"title\":\"Ludwig Maximilian University of Munich\",\"count\":1}],\"prefixes\":[{\"id\":\"10.17876\",\"title\":\"10.17876\",\"count\":10861},{\"id\":\"10.0253\",\"title\":\"10.0253\",\"count\":4443},{\"id\":\"10.15771\",\"title\":\"10.15771\",\"count\":4272},{\"id\":\"10.0133\",\"title\":\"10.0133\",\"count\":2707},{\"id\":\"10.0174\",\"title\":\"10.0174\",\"count\":2468},{\"id\":\"10.5282\",\"title\":\"10.5282\",\"count\":2220},{\"id\":\"10.2312\",\"title\":\"10.2312\",\"count\":1429},{\"id\":\"10.0143\",\"title\":\"10.0143\",\"count\":1006},{\"id\":\"10.0142\",\"title\":\"10.0142\",\"count\":932},{\"id\":\"10.0042\",\"title\":\"10.0042\",\"count\":854},{\"id\":\"10.1594\",\"title\":\"10.1594\",\"count\":584},{\"id\":\"10.0137\",\"title\":\"10.0137\",\"count\":500},{\"id\":\"10.15770\",\"title\":\"10.15770\",\"count\":321},{\"id\":\"10.17169\",\"title\":\"10.17169\",\"count\":321},{\"id\":\"10.14278\",\"title\":\"10.14278\",\"count\":159}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":16151},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":1179},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":10}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":29370},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":1381},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":21}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":996},{\"id\":\"404\",\"title\":\"404\",\"count\":590},{\"id\":\"403\",\"title\":\"403\",\"count\":93},{\"id\":\"401\",\"title\":\"401\",\"count\":22},{\"id\":\"503\",\"title\":\"503\",\"count\":2},{\"id\":\"500\",\"title\":\"500\",\"count\":1}],\"linksChecked\":233,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":8004},{\"id\":\"1\",\"title\":\"1\",\"count\":30}],\"linkChecksSchemaOrgId\":12,\"linkChecksDcIdentifier\":197,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Plant Genetic Resources for Food and Agriculture (PGRFA)\",\"title\":\"Plant Genetic Resources For Food And Agriculture (Pgrfa)\",\"count\":1001},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":805},{\"id\":\"Agriculture\",\"title\":\"Agriculture\",\"count\":778},{\"id\":\"Include keyword(s) that describe the subject focus of the resource. Format: Comma-separated list of keywords.\",\"title\":\"Include Keyword(S) That Describe The Subject Focus Of The Resource. Format: Comma Separated List Of Keywords.\",\"count\":736},{\"id\":\"ÖFOS 2002, German studies\",\"title\":\"öfos 2002, German Studies\",\"count\":536},{\"id\":\"ÖFOS 2002, Germanistik\",\"title\":\"öfos 2002, Germanistik\",\"count\":536},{\"id\":\"ÖFOS 2002, Botanik\",\"title\":\"öfos 2002, Botanik\",\"count\":528},{\"id\":\"ÖFOS 2002, Botany\",\"title\":\"öfos 2002, Botany\",\"count\":528},{\"id\":\"alien\",\"title\":\"Alien\",\"count\":432},{\"id\":\"gorilla\",\"title\":\"Gorilla\",\"count\":432},{\"id\":\"510\",\"title\":\"510\",\"count\":365},{\"id\":\"Cooking\",\"title\":\"Cooking\",\"count\":347},{\"id\":\"Eating\",\"title\":\"Eating\",\"count\":347},{\"id\":\"Generic Stuff\",\"title\":\"Generic Stuff\",\"count\":347},{\"id\":\"European Projects, Europeana Libraries\",\"title\":\"European Projects, Europeana Libraries\",\"count\":318}],\"citations\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=tib&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&consortium-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=tib&query=®istered=&resource-type-id=\"}}" + "size": 72152, + "text": "{\"data\":[{\"id\":\"10.18150/fk2/4v5fsd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.18150/fk2/4v5fsd\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.18150/fk2/4v5fsd\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Molecular-Cell, Caroline\",\"nameType\":\"Personal\",\"givenName\":\"Caroline\",\"familyName\":\"Molecular-Cell\",\"affiliation\":[{\"name\":\"Dataverse.org\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"New data set\"}],\"publisher\":\"RepOD\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Molecular-Cell, Caroline\",\"nameType\":\"Personal\",\"givenName\":\"Caroline\",\"familyName\":\"Molecular-Cell\",\"affiliation\":[{\"name\":\"Dataverse.org\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"lorem ipsum dolor\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://repod-test.icm.edu.pl/citation?persistentId=doi:10.18150/FK2/4V5FSD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T13:57:43.000Z\",\"registered\":\"2020-05-04T13:57:44.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T13:57:44.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.repod\",\"type\":\"clients\"}}}},{\"id\":\"10.7951/tor.78293\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7951/tor.78293\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7951/tor.78293\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://ds01.haw.tuhh.de/handle/123456789/87351\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Tu, Phu\",\"nameType\":\"Personal\",\"givenName\":\"Phu\",\"familyName\":\"Tu\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test für Issue #52: DOI-Registrierung\"}],\"publisher\":\"HAW Hamburg\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"000: Allgemeines, Wissenschaft\",\"subjectScheme\":\"ddc\"}],\"contributors\":[{\"name\":\"HAW Hamburg\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"HAW Hamburg\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Working Paper\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"info:eu-repo/semantics/openAccess\"}],\"descriptions\":[{\"description\":\"Prüfen, ob DOI in Fabrica ankommt: https://doi.test.datacite.org/repositories/tib.haw/dois und die Registrierung somit funktioniert\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://ds01.haw.tuhh.de/handle/123456789/87351\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T12:44:14.000Z\",\"registered\":\"2020-05-04T12:44:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T12:44:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.haw\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12559\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12559\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12559\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94470\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/175281\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Ein Streit zwischen dem Männer- und dem Frauenkonvent des Klosters Interlaken wird entschieden\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Stifte und Klöster/A-Z\"},{\"subject\":\"Interlaken\"},{\"subject\":\"15. Jahrhundert\"},{\"subject\":\"Gerichtswesen\"},{\"subject\":\"Frauen\"},{\"subject\":\"Rennefahrt, Hermann (1878-1968)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1947\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"65-79\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:19.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12718\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12718\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12718\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94629\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177602\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Rorgonid Right - Two Scenarios\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Jackman, Donald C. (1954-)\"},{\"subject\":\"Europa\"},{\"subject\":\"Frühmittelalter\"},{\"subject\":\"Geistes- und Kulturgeschichte\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2000\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"129-153\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:19.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12637\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12637\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12637\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94548\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/176018\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Die weltliche Verwaltung des Fürstbistums Basel am Ende des Spätmittelalters und der Ausbau der Landesherrschaft\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Bistümer/A-Z\"},{\"subject\":\"Basel\"},{\"subject\":\"Spätmittelalter\"},{\"subject\":\"Verwaltungsgeschichte\"},{\"subject\":\"Weissen, Kurt (1953-)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2002\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Buchbeitrag\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:19.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12822\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12822\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12822\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94733\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177821\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Bruchstücke einer Sachsenspiegelhandschrift\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Bartsch, Karl (1832-1888)\"},{\"subject\":\"Deutschland\"},{\"subject\":\"Handschriften\"},{\"subject\":\"Sachsenspiegel\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1868\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"319-322\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:18.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12339\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12339\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12339\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94250\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Inferno. ; Die Komödie des Dante Alighieri. Uebersetzt und mit begleitendem commentar hrsg. von Alexander Tanner. Das erste lied: die Hölle.\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1865-01-01\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"We have determined this item to be in the public domain according to US copyright law through information in the bibliographic record and/or US copyright renewal records. The digital version is available for all educational uses worldwide. Please contact HathiTrust staff at hathitrust-help@umich.edu with any questions about this item.\"}],\"descriptions\":[{\"description\":\"viii, 346, [1] p.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:18.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12517\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12517\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12517\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94428\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/175136\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"La Prétendue lettre de Dinoot, évêque de Bangor, à Augustin\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Loth, Joseph (1847-1934)\"},{\"subject\":\"Bretagne\"},{\"subject\":\"Quellenkunde und Historiographie\"},{\"subject\":\"Bischöfe (Einzelne)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1902\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"139-140\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:17.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12756\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12756\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12756\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94667\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177749\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Das Hospital. Eine kirchenrechtliche Institution? (ca. 1150-ca. 1350)\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Hospitalwesen\"},{\"subject\":\"Europa\"},{\"subject\":\"12. Jahrhundert\"},{\"subject\":\"13. Jahrhundert\"},{\"subject\":\"14. Jahrhundert\"},{\"subject\":\"Kanonisches Recht, Kanonistik\"},{\"subject\":\"Drossbach, Gisela (20. Jh.)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2001\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"510-522\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:17.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12816\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12816\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12816\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94727\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177815\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Die Lex Maenia de dote vom Jahr der Stadt Rom 568\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Rom\"},{\"subject\":\"6. Jahrhundert\"},{\"subject\":\"Rechtsgeschichte\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1868\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"1-43\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:17.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12743\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12743\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12743\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94654\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177720\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Die Lex Salica: Textkritik, Entstehung und Münzsystem\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Krusch, Bruno (1857-1940)\"},{\"subject\":\"Europa\"},{\"subject\":\"Frühmittelalter\"},{\"subject\":\"Numismatik und Geldgeschichte\"},{\"subject\":\"Volksrechte\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1937\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"417-437\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:16.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12727\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12727\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12727\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94638\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177612\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Stadtgeschichtsforschung und Denkmalspflege in der französischen Capitale. Zum 100-jährigen Bestehen der Commission du Vieux Paris\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sohn, Andreas (1959-)\"},{\"subject\":\"Paris\"},{\"subject\":\"Späte Neuzeit\"},{\"subject\":\"Organisationen\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2001\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"163-189\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:16.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12516\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12516\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12516\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94427\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/175135\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Mélanges d'histoire bretonne\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Lot, Ferdinand (1866-1952)\"},{\"subject\":\"Bischöfe (Einzelne)\"},{\"subject\":\"Bretagne\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1906\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"1-28, 239-263, 402-413, 700-759\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:15.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12694\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12694\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12694\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94605\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177423\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Beiträge zur Geschichte der Stadtkirche in Egeln\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Isaak II., K. von Byzanz (1185-1195, 1203-1204)\"},{\"subject\":\"12. Jahrhundert\"},{\"subject\":\"Egeln\"},{\"subject\":\"Sachsen-Anhalt\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1872\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"100-108, 336-344\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:15.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12689\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12689\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12689\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94600\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177188\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Ein Bischof von Odense bei den Tartaren\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Hiestand, Rudolf (1933-)\"},{\"subject\":\"Europa\"},{\"subject\":\"Odense\"},{\"subject\":\"Historiographie\"},{\"subject\":\"Reisen und Reisebeschreibungen\"},{\"subject\":\"Bischöfe (Einzelne)\"},{\"subject\":\"Mayer, Hans Eberhard (1932-)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2002\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"219-227\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:15.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12673\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12673\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12673\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94584\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/176973\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"L'oubli d'Hésione ou le fatal aveuglement: le jeu du tort et du droit dans le Roman de Troie de Benoît de Sainte-Maure\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Literaturgeschichte\"},{\"subject\":\"Frankreich\"},{\"subject\":\"Mittelalter\"},{\"subject\":\"Benoît (12. Jh.)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2002\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"235-252\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:14.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:14.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12780\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12780\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12780\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94691\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177778\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Die Collectio Veronensis\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Landau, Peter (1935-2019)\"},{\"subject\":\"Europa\"},{\"subject\":\"Handschriften\"},{\"subject\":\"Kanonisches Recht, Kanonistik\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1981\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"75-120\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:14.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:14.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12380\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12380\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12380\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94291\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/174732\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Zur Entstehung der Schweizerischen Eidgenossenschaft\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Steinacker, Harold (1875-1965)\"},{\"subject\":\"Schweiz\"},{\"subject\":\"Politische Geschichte\"},{\"subject\":\"Verfassungsgeschichte\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1935\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"386-395\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:13.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12497\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12497\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12497\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94408\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/175109\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les saints bretons dans la toponymie\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Bretagne\"},{\"subject\":\"Orts- und Flurnamen\"},{\"subject\":\"Heilige, Heiligenverehrung\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1954\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"372-406\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:13.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12683\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12683\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12683\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94594\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177181\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Pater incertus? Zu den Vätern des Gegenkönigs Chlothar IV. (717-718) und des letzten Merowingerkönigs Childerich III. (743-751)\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Merowinger\"},{\"subject\":\"Europa\"},{\"subject\":\"8. Jahrhundert\"},{\"subject\":\"Könige\"},{\"subject\":\"Sozialgeschichte\"},{\"subject\":\"Childerich (743-751)\"},{\"subject\":\"Hartmann, Martina (1960-)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2002\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"1-15\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:12.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12533\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12533\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12533\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94444\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/175155\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Religieux mendiants et classes sociales en Bretagne aux XIVe et XVe siècles\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Martin, Hervé (1940-)\"},{\"subject\":\"Bretagne\"},{\"subject\":\"14. Jahrhundert\"},{\"subject\":\"15. Jahrhundert\"},{\"subject\":\"Klosterwesen\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1975\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"19-46\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:12.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12513\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12513\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12513\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94424\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/175129\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Documents ménaisiens\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Bretagne\"},{\"subject\":\"Urkunden und Regesten\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"15-50\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:12.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12868\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12868\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12868\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94779\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/178096\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Bemerkungen zur Christianisierung der Abodriten\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Lotter, Friedrich (1924-2014)\"},{\"subject\":\"Ostseeraum\"},{\"subject\":\"Volksgruppen\"},{\"subject\":\"Christentum, Christianisierung\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1973\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Buchbeitrag\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:11.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12779\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12779\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12779\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94690\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177777\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Romanisierungstendenzen im frühen kanonischen Recht\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Weigand, Rudolf (1929-1998)\"},{\"subject\":\"Europa\"},{\"subject\":\"Frühmittelalter\"},{\"subject\":\"Kanonisches Recht, Kanonistik\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1983\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Aufsatz\",\"resourceTypeGeneral\":\"Other\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"200-249\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:11.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}},{\"id\":\"10.0042/amad-12699\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0042/amad-12699\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0042/amad-12699\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://repo-beta.amad.org/jspui/handle/123456789/94610\",\"identifierType\":\"uri\"},{\"identifier\":\"http://opac.regesta-imperii.de/id/177428\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"(:Unkn) Unknown\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Die Münzen der Grafen von Barby im neueren Zeitalter, nebst einigen Nachrichten über das Münzwesen derselben im Mittelalter\"}],\"publisher\":\"My University\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Adelsfamilien/A-Z\"},{\"subject\":\"Sachsen-Anhalt\"},{\"subject\":\"Barby (Elbe)\"},{\"subject\":\"Mittelalter\"},{\"subject\":\"Numismatik und Geldgeschichte\"},{\"subject\":\"Münzen\"},{\"subject\":\"Mülverstedt, Georg Adalbert von (1825-1914)\"}],\"contributors\":[{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"University, My\",\"nameType\":\"Personal\",\"givenName\":\"My\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020-05-04\",\"dateType\":\"Accepted\"},{\"date\":\"2020-05-04\",\"dateType\":\"Available\"},{\"date\":\"1872\",\"dateType\":\"Created\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"204-223, 303-315\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-3\",\"source\":\"mds\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T11:04:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T11:04:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.hebis\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":46944,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":30497},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":16062},{\"id\":\"registered\",\"title\":\"Registered\",\"count\":385}],\"resourceTypes\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":12451},{\"id\":\"text\",\"title\":\"Text\",\"count\":7893},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2040},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1001},{\"id\":\"image\",\"title\":\"Image\",\"count\":607},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":306},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":158},{\"id\":\"software\",\"title\":\"Software\",\"count\":27},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":20},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":4},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":15485},{\"id\":\"2019\",\"title\":\"2019\",\"count\":15227},{\"id\":\"2018\",\"title\":\"2018\",\"count\":14102},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1152},{\"id\":\"2016\",\"title\":\"2016\",\"count\":203},{\"id\":\"2015\",\"title\":\"2015\",\"count\":129},{\"id\":\"2014\",\"title\":\"2014\",\"count\":507},{\"id\":\"2013\",\"title\":\"2013\",\"count\":123},{\"id\":\"2012\",\"title\":\"2012\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2}],\"published\":[{\"id\":\"2222\",\"title\":\"2222\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2099\",\"title\":\"2099\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2024\",\"title\":\"2024\",\"count\":1},{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2022\",\"title\":\"2022\",\"count\":22},{\"id\":\"2021\",\"title\":\"2021\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":15462},{\"id\":\"2019\",\"title\":\"2019\",\"count\":3948},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1317},{\"id\":\"2017\",\"title\":\"2017\",\"count\":652},{\"id\":\"2016\",\"title\":\"2016\",\"count\":1022},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1028},{\"id\":\"2014\",\"title\":\"2014\",\"count\":704},{\"id\":\"2013\",\"title\":\"2013\",\"count\":718},{\"id\":\"2012\",\"title\":\"2012\",\"count\":620},{\"id\":\"2011\",\"title\":\"2011\",\"count\":370},{\"id\":\"2010\",\"title\":\"2010\",\"count\":482},{\"id\":\"2009\",\"title\":\"2009\",\"count\":438},{\"id\":\"2008\",\"title\":\"2008\",\"count\":369},{\"id\":\"2007\",\"title\":\"2007\",\"count\":200},{\"id\":\"2006\",\"title\":\"2006\",\"count\":174},{\"id\":\"2005\",\"title\":\"2005\",\"count\":157},{\"id\":\"2004\",\"title\":\"2004\",\"count\":151},{\"id\":\"2003\",\"title\":\"2003\",\"count\":122},{\"id\":\"2002\",\"title\":\"2002\",\"count\":121},{\"id\":\"2001\",\"title\":\"2001\",\"count\":103},{\"id\":\"2000\",\"title\":\"2000\",\"count\":310},{\"id\":\"1999\",\"title\":\"1999\",\"count\":13},{\"id\":\"1998\",\"title\":\"1998\",\"count\":9},{\"id\":\"1997\",\"title\":\"1997\",\"count\":2},{\"id\":\"1996\",\"title\":\"1996\",\"count\":3},{\"id\":\"1995\",\"title\":\"1995\",\"count\":2},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3},{\"id\":\"1993\",\"title\":\"1993\",\"count\":1},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2},{\"id\":\"1991\",\"title\":\"1991\",\"count\":4},{\"id\":\"1990\",\"title\":\"1990\",\"count\":973},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1},{\"id\":\"1985\",\"title\":\"1985\",\"count\":2},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1},{\"id\":\"1983\",\"title\":\"1983\",\"count\":2},{\"id\":\"1982\",\"title\":\"1982\",\"count\":2},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1},{\"id\":\"1980\",\"title\":\"1980\",\"count\":2},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1},{\"id\":\"1978\",\"title\":\"1978\",\"count\":1},{\"id\":\"1973\",\"title\":\"1973\",\"count\":1},{\"id\":\"1963\",\"title\":\"1963\",\"count\":1},{\"id\":\"1958\",\"title\":\"1958\",\"count\":1},{\"id\":\"1957\",\"title\":\"1957\",\"count\":1},{\"id\":\"1953\",\"title\":\"1953\",\"count\":1},{\"id\":\"1950\",\"title\":\"1950\",\"count\":1},{\"id\":\"1948\",\"title\":\"1948\",\"count\":1},{\"id\":\"1947\",\"title\":\"1947\",\"count\":4},{\"id\":\"1943\",\"title\":\"1943\",\"count\":1},{\"id\":\"1941\",\"title\":\"1941\",\"count\":1},{\"id\":\"1940\",\"title\":\"1940\",\"count\":3},{\"id\":\"1939\",\"title\":\"1939\",\"count\":3},{\"id\":\"1938\",\"title\":\"1938\",\"count\":5},{\"id\":\"1937\",\"title\":\"1937\",\"count\":6},{\"id\":\"1936\",\"title\":\"1936\",\"count\":1},{\"id\":\"1935\",\"title\":\"1935\",\"count\":1},{\"id\":\"1934\",\"title\":\"1934\",\"count\":7},{\"id\":\"1933\",\"title\":\"1933\",\"count\":8},{\"id\":\"1932\",\"title\":\"1932\",\"count\":4},{\"id\":\"1931\",\"title\":\"1931\",\"count\":7},{\"id\":\"1930\",\"title\":\"1930\",\"count\":15},{\"id\":\"1929\",\"title\":\"1929\",\"count\":7},{\"id\":\"1928\",\"title\":\"1928\",\"count\":166},{\"id\":\"1927\",\"title\":\"1927\",\"count\":9},{\"id\":\"1926\",\"title\":\"1926\",\"count\":11},{\"id\":\"1925\",\"title\":\"1925\",\"count\":17},{\"id\":\"1924\",\"title\":\"1924\",\"count\":9},{\"id\":\"1923\",\"title\":\"1923\",\"count\":16},{\"id\":\"1922\",\"title\":\"1922\",\"count\":6},{\"id\":\"1921\",\"title\":\"1921\",\"count\":14},{\"id\":\"1920\",\"title\":\"1920\",\"count\":16},{\"id\":\"1919\",\"title\":\"1919\",\"count\":12},{\"id\":\"1918\",\"title\":\"1918\",\"count\":11},{\"id\":\"1917\",\"title\":\"1917\",\"count\":13},{\"id\":\"1916\",\"title\":\"1916\",\"count\":10},{\"id\":\"1915\",\"title\":\"1915\",\"count\":10},{\"id\":\"1914\",\"title\":\"1914\",\"count\":10},{\"id\":\"1913\",\"title\":\"1913\",\"count\":17},{\"id\":\"1912\",\"title\":\"1912\",\"count\":26},{\"id\":\"1911\",\"title\":\"1911\",\"count\":31},{\"id\":\"1910\",\"title\":\"1910\",\"count\":22},{\"id\":\"1909\",\"title\":\"1909\",\"count\":33},{\"id\":\"1908\",\"title\":\"1908\",\"count\":28},{\"id\":\"1907\",\"title\":\"1907\",\"count\":22},{\"id\":\"1906\",\"title\":\"1906\",\"count\":22},{\"id\":\"1905\",\"title\":\"1905\",\"count\":20},{\"id\":\"1904\",\"title\":\"1904\",\"count\":26},{\"id\":\"1903\",\"title\":\"1903\",\"count\":30},{\"id\":\"1902\",\"title\":\"1902\",\"count\":31},{\"id\":\"1901\",\"title\":\"1901\",\"count\":28},{\"id\":\"1900\",\"title\":\"1900\",\"count\":18},{\"id\":\"1899\",\"title\":\"1899\",\"count\":31},{\"id\":\"1898\",\"title\":\"1898\",\"count\":31},{\"id\":\"1897\",\"title\":\"1897\",\"count\":21},{\"id\":\"1896\",\"title\":\"1896\",\"count\":33},{\"id\":\"1895\",\"title\":\"1895\",\"count\":25},{\"id\":\"1894\",\"title\":\"1894\",\"count\":31},{\"id\":\"1893\",\"title\":\"1893\",\"count\":29},{\"id\":\"1892\",\"title\":\"1892\",\"count\":22},{\"id\":\"1891\",\"title\":\"1891\",\"count\":27},{\"id\":\"1890\",\"title\":\"1890\",\"count\":21},{\"id\":\"1889\",\"title\":\"1889\",\"count\":25},{\"id\":\"1888\",\"title\":\"1888\",\"count\":21},{\"id\":\"1887\",\"title\":\"1887\",\"count\":22},{\"id\":\"1886\",\"title\":\"1886\",\"count\":33},{\"id\":\"1885\",\"title\":\"1885\",\"count\":30},{\"id\":\"1884\",\"title\":\"1884\",\"count\":27},{\"id\":\"1883\",\"title\":\"1883\",\"count\":32},{\"id\":\"1882\",\"title\":\"1882\",\"count\":21},{\"id\":\"1881\",\"title\":\"1881\",\"count\":23},{\"id\":\"1880\",\"title\":\"1880\",\"count\":24},{\"id\":\"1879\",\"title\":\"1879\",\"count\":7},{\"id\":\"1878\",\"title\":\"1878\",\"count\":15},{\"id\":\"1877\",\"title\":\"1877\",\"count\":18},{\"id\":\"1876\",\"title\":\"1876\",\"count\":14},{\"id\":\"1875\",\"title\":\"1875\",\"count\":14},{\"id\":\"1874\",\"title\":\"1874\",\"count\":16},{\"id\":\"1873\",\"title\":\"1873\",\"count\":18},{\"id\":\"1872\",\"title\":\"1872\",\"count\":7},{\"id\":\"1871\",\"title\":\"1871\",\"count\":4},{\"id\":\"1870\",\"title\":\"1870\",\"count\":18},{\"id\":\"1869\",\"title\":\"1869\",\"count\":8},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":13},{\"id\":\"1866\",\"title\":\"1866\",\"count\":14},{\"id\":\"1865\",\"title\":\"1865\",\"count\":13},{\"id\":\"1864\",\"title\":\"1864\",\"count\":13},{\"id\":\"1863\",\"title\":\"1863\",\"count\":21},{\"id\":\"1862\",\"title\":\"1862\",\"count\":16},{\"id\":\"1861\",\"title\":\"1861\",\"count\":16},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":3},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":11},{\"id\":\"1856\",\"title\":\"1856\",\"count\":7},{\"id\":\"1855\",\"title\":\"1855\",\"count\":22},{\"id\":\"1854\",\"title\":\"1854\",\"count\":9},{\"id\":\"1853\",\"title\":\"1853\",\"count\":7},{\"id\":\"1852\",\"title\":\"1852\",\"count\":9},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":8},{\"id\":\"1849\",\"title\":\"1849\",\"count\":6},{\"id\":\"1848\",\"title\":\"1848\",\"count\":9},{\"id\":\"1847\",\"title\":\"1847\",\"count\":7},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":12},{\"id\":\"1844\",\"title\":\"1844\",\"count\":21},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":15},{\"id\":\"1841\",\"title\":\"1841\",\"count\":6},{\"id\":\"1840\",\"title\":\"1840\",\"count\":11},{\"id\":\"1839\",\"title\":\"1839\",\"count\":11},{\"id\":\"1838\",\"title\":\"1838\",\"count\":7},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":10},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":3},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":5},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":9},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":7},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":5},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":10},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":5},{\"id\":\"1813\",\"title\":\"1813\",\"count\":5},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":5},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":1},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":3},{\"id\":\"1805\",\"title\":\"1805\",\"count\":4},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":52},{\"id\":\"1799\",\"title\":\"1799\",\"count\":2},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":6},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":4},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":4},{\"id\":\"1775\",\"title\":\"1775\",\"count\":3},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":3},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":1},{\"id\":\"1766\",\"title\":\"1766\",\"count\":2},{\"id\":\"1765\",\"title\":\"1765\",\"count\":4},{\"id\":\"1763\",\"title\":\"1763\",\"count\":2},{\"id\":\"1761\",\"title\":\"1761\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":1},{\"id\":\"1758\",\"title\":\"1758\",\"count\":1},{\"id\":\"1757\",\"title\":\"1757\",\"count\":3},{\"id\":\"1756\",\"title\":\"1756\",\"count\":2},{\"id\":\"1755\",\"title\":\"1755\",\"count\":3},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1750\",\"title\":\"1750\",\"count\":4},{\"id\":\"1749\",\"title\":\"1749\",\"count\":1},{\"id\":\"1748\",\"title\":\"1748\",\"count\":1},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":3},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":3},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":3},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1739\",\"title\":\"1739\",\"count\":3},{\"id\":\"1738\",\"title\":\"1738\",\"count\":1},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":1},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":3},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":2},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":2},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":2},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":2},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":1},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":1},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2465},{\"id\":\"2019\",\"title\":\"2019\",\"count\":13800},{\"id\":\"2018\",\"title\":\"2018\",\"count\":13403},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1030},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2015\",\"title\":\"2015\",\"count\":45},{\"id\":\"2012\",\"title\":\"2012\",\"count\":13},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":46944}],\"clients\":[{\"id\":\"tib.hebis\",\"title\":\"Goethe-Universität Frankfurt\",\"count\":12874},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"tib.ulbd\",\"title\":\"Universität- und Landesbibliothek Darmstadt\",\"count\":4449},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":4364},{\"id\":\"tib.radar\",\"title\":\"RADAR Projekt\",\"count\":2783},{\"id\":\"tib.ubw\",\"title\":\"Universität Wien Bibliothek und Archiv\",\"count\":2468},{\"id\":\"tib.ublmu\",\"title\":\"Universitätsbibliothek München\",\"count\":2221},{\"id\":\"tib.awi\",\"title\":\"Alfred Wegener Institute\",\"count\":1428},{\"id\":\"tib.ipk\",\"title\":\"IPK Gatersleben\",\"count\":1006},{\"id\":\"tib.tudo\",\"title\":\"Technische Universität Dortmund\",\"count\":932}],\"affiliations\":[{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/00f2yqf98\",\"title\":\"Hannover Medical School\",\"count\":1},{\"id\":\"ror.org/0304hq317\",\"title\":\"University of Hannover\",\"count\":1},{\"id\":\"ror.org/04zc7p361\",\"title\":\"University of Kassel\",\"count\":1},{\"id\":\"ror.org/05591te55\",\"title\":\"Ludwig Maximilian University of Munich\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0042\",\"title\":\"10.0042\",\"count\":12874},{\"id\":\"10.17876\",\"title\":\"10.17876\",\"count\":10861},{\"id\":\"10.0253\",\"title\":\"10.0253\",\"count\":4448},{\"id\":\"10.15771\",\"title\":\"10.15771\",\"count\":4337},{\"id\":\"10.0133\",\"title\":\"10.0133\",\"count\":2783},{\"id\":\"10.0174\",\"title\":\"10.0174\",\"count\":2468},{\"id\":\"10.5282\",\"title\":\"10.5282\",\"count\":2221},{\"id\":\"10.2312\",\"title\":\"10.2312\",\"count\":1429},{\"id\":\"10.0143\",\"title\":\"10.0143\",\"count\":1006},{\"id\":\"10.0142\",\"title\":\"10.0142\",\"count\":932}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":1}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":17328},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":13199},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":10}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":1090},{\"id\":\"404\",\"title\":\"404\",\"count\":567},{\"id\":\"403\",\"title\":\"403\",\"count\":94},{\"id\":\"401\",\"title\":\"401\",\"count\":31},{\"id\":\"503\",\"title\":\"503\",\"count\":2},{\"id\":\"500\",\"title\":\"500\",\"count\":1}],\"citations\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&consortium-id=&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=tib&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&consortium-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=tib&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -206,8 +206,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:31.282Z", - "time": 334, + "startedDateTime": "2020-05-04T16:41:55.708Z", + "time": 283, "timings": { "blocked": -1, "connect": -1, @@ -215,1191 +215,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 334 + "wait": 283 } }, { - "_id": "1bc044b733765521096bef2b4bfd1b40", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 676, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.slubdd" - }, - "response": { - "bodySize": 801, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 801, - "text": "{\"data\":{\"id\":\"tib.slubdd\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden (SLUB)\",\"symbol\":\"TIB.SLUBDD\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"openaccess@slub-dresden.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"oa.slub-dresden.de,sdvojstest.slub-dresden.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2013-07-22T09:08:26.000Z\",\"updated\":\"2019-02-27T15:16:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.13141\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 385, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 385 - } - }, - { - "_id": "a7019340ce1bc21814a9fa54f2dc54e6", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 680, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.test-thulb" - }, - "response": { - "bodySize": 725, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 725, - "text": "{\"data\":{\"id\":\"tib.test-thulb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Thüringer Universitäts- und Landesbibliothek Jena\",\"symbol\":\"TIB.TEST-THULB\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jpadmin@thulb.uni-jena.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-10-24T08:23:41.000Z\",\"updated\":\"2019-10-24T08:29:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7954\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 396, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 396 - } - }, - { - "_id": "6718fc8e81700b6e9ca8132c87519023", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 683, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.test-upotsdam" - }, - "response": { - "bodySize": 715, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 715, - "text": "{\"data\":{\"id\":\"tib.test-upotsdam\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universität Potsdam\",\"symbol\":\"TIB.TEST-UPOTSDAM\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"andreas.kennecke@uni-potsdam.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-01-24T11:34:59.000Z\",\"updated\":\"2019-02-04T10:52:45.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24396\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 450, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 450 - } - }, - { - "_id": "35cda43409dfc4478269d6f56d418d39", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 678, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.test-ffe" - }, - "response": { - "bodySize": 703, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 703, - "text": "{\"data\":{\"id\":\"tib.test-ffe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Forschungsstelle für Energiewirtschaft e. V.\",\"symbol\":\"TIB.TEST-FFE\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"adoll@ffe.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-21T10:24:56.000Z\",\"updated\":\"2020-02-19T10:55:27.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80084\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 453, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 453 - } - }, - { - "_id": "7a376c17634d97f0f05b40a54781271e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 678, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.test-hse" - }, - "response": { - "bodySize": 748, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 748, - "text": "{\"data\":{\"id\":\"tib.test-hse\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliothek der Hochschule Esslingen - University of Applied Sciences\",\"symbol\":\"TIB.TEST-HSE\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"bibliothek@hs-esslingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-02T09:26:22.000Z\",\"updated\":\"2019-05-02T14:20:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70037\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 455, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 455 - } - }, - { - "_id": "0b4588cf3119dc575806e66fcded8032", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 673, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.awi" - }, - "response": { - "bodySize": 1029, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1029, - "text": "{\"data\":{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"globusUuid\":null,\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"salesforceId\":null,\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},\"meta\":{\"doiCount\":1428,\"prefixCount\":0}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 466, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 466 - } - }, - { - "_id": "4ef1f471d2d58e5b3241d7dd2a7e6798", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 675, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.rubhb" - }, - "response": { - "bodySize": 738, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 738, - "text": "{\"data\":{\"id\":\"tib.rubhb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"UB Bochum\",\"symbol\":\"TIB.RUBHB\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"andre.hagenbruch@rub.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"bibliographie.ub.rub.de,bibliographie.ub.ruhr-uni-bochum.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2013-08-22T08:56:23.000Z\",\"updated\":\"2018-08-26T01:30:36.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.13154\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 785, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 785 - } - }, - { - "_id": "123929eb8d997d6a16367db83f2f3f49", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 674, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ulbd" - }, - "response": { - "bodySize": 751, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 751, - "text": "{\"data\":{\"id\":\"tib.ulbd\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universität- und Landesbibliothek Darmstadt\",\"symbol\":\"TIB.ULBD\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"roth-steiner@ulb.tu-darmstadt.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"tuprints.ulb.tu-darmstadt.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-08-07T13:46:28.000Z\",\"updated\":\"2018-08-26T01:31:06.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0253\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4444,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 802, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 802 - } - }, - { - "_id": "15aa96f8b3f54e071ce0242e28b6c5f1", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 673, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ubw" - }, - "response": { - "bodySize": 743, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 743, - "text": "{\"data\":{\"id\":\"tib.ubw\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universität Wien Bibliothek und Archiv\",\"symbol\":\"TIB.UBW\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"raman.ganguly@univie.ac.at\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"phaidra.univie.ac.at,univie.ac.at\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-10-06T08:34:01.000Z\",\"updated\":\"2018-08-26T01:31:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0174\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2468,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 850, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 850 - } - }, - { - "_id": "a27c33ab23c727bee7dc6821f0bcce8c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 674, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.hawk" - }, - "response": { - "bodySize": 757, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 757, - "text": "{\"data\":{\"id\":\"tib.hawk\",\"type\":\"repositories\",\"attributes\":{\"name\":\"HAWK Hildesheim - Hornemann Institut\",\"symbol\":\"TIB.HAWK\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hentschel@hornemann-institut.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"hornemann-institut.de,salzwiki.de,saltwiki.net\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-07-22T09:19:29.000Z\",\"updated\":\"2018-08-26T01:30:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5165\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 852, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 852 - } - }, - { - "_id": "d746ece1e680456d2c069b437f018e9a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 675, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.radar" - }, - "response": { - "bodySize": 820, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 820, - "text": "{\"data\":{\"id\":\"tib.radar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2707,\"prefixCount\":2}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 855, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 855 - } - }, - { - "_id": "1dc5f5f893c3a8017a5bc236507be053", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 673, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ipk" - }, - "response": { - "bodySize": 1420, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 1420, - "text": "{\"data\":{\"id\":\"tib.ipk\",\"type\":\"repositories\",\"attributes\":{\"name\":\"IPK Gatersleben\",\"symbol\":\"TIB.IPK\",\"re3data\":\"https://doi.org/10.17616/R3CP9H\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"lange@ipk-gatersleben.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"The Institute of Plant Genetics and Crop Plant Research IPK Gatersleben, is a nonprofit research institution for crop genetics and molecular biology, and is part of the Leibniz Association. The mission of the IPK Gatersleben is to conduct basic and applied research in the area of plant genetics and crop plant research. The results of this work are not only of significant benefit to plant breeders and the agricultural industry, but also to the food, feed, and chemical industry. An additional research area, the use of renewable raw materials, is increasingly gaining in importance.\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"doi.ipk-gatersleben.de,example.com,fz-juelich.de\",\"issn\":null,\"url\":\"http://www.ipk-gatersleben.de/en/databases/\",\"salesforceId\":null,\"created\":\"2011-06-23T10:23:10.000Z\",\"updated\":\"2018-11-24T16:37:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1006,\"prefixCount\":2}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 863, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 863 - } - }, - { - "_id": "7594c79ef2a62f741b570c58423a09da", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 673, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ama" - }, - "response": { - "bodySize": 698, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 698, - "text": "{\"data\":{\"id\":\"tib.ama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AMA Service GmbH\",\"symbol\":\"TIB.AMA\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"boedeker@sensorfairs.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"ama-science.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-11-04T07:06:54.000Z\",\"updated\":\"2018-08-26T01:30:27.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5162\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":128,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1123, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1123 - } - }, - { - "_id": "40ccb71685fca1cd53f9588521eee7f2", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 674, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.mpdl" - }, - "response": { - "bodySize": 969, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 969, - "text": "{\"data\":{\"id\":\"tib.mpdl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Max Planck Digital Library\",\"symbol\":\"TIB.MPDL\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"overkamp@mpdl.mpg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"hdl.handle.net,mpg.de,edmond.mpdl.mpg.de,pubman.mpdl.mpg.de,edoc.mpg.de,try-db.org,baci-h2020.eu\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2014-11-25T14:03:33.000Z\",\"updated\":\"2018-08-26T01:30:44.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4299,\"prefixCount\":6}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1129, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1129 - } - }, - { - "_id": "731abf543675c2e80f4368c8c52b265f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 675, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ublmu" - }, - "response": { - "bodySize": 839, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 839, - "text": "{\"data\":{\"id\":\"tib.ublmu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universitätsbibliothek München\",\"symbol\":\"TIB.UBLMU\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"volker.schallehn@ub.uni-muenchen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"uni-muenchen.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-07-18T14:16:28.000Z\",\"updated\":\"2019-01-30T12:43:58.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":2220,\"prefixCount\":4}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1134, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1134 - } - }, - { - "_id": "3c9910eec98da15df0cac4005a47e5eb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 674, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.hzdr" - }, - "response": { - "bodySize": 706, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 706, - "text": "{\"data\":{\"id\":\"tib.hzdr\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Helmholtz-Zentrum Dresden-Rossendorf\",\"symbol\":\"TIB.HZDR\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"u.konrad@hzdr.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"hzdr.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2013-09-27T08:15:32.000Z\",\"updated\":\"2018-08-26T01:30:37.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14278\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":159,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1156, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1156 - } - }, - { - "_id": "22bbfed5ceea90415ee0c346ed97fdf9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 673, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.kit" - }, - "response": { - "bodySize": 827, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 827, - "text": "{\"data\":{\"id\":\"tib.kit\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Karlsruher Institut für Technologie\",\"symbol\":\"TIB.KIT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"nadin.weiss@kit.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"ubka.uni-karlsruhe.de,mediaservice-dev.bibliothek.kit.edu\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-05-16T14:21:48.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":151,\"prefixCount\":3}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1165, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1165 - } - }, - { - "_id": "fcb7092cbfe0fc84577670830f132e2a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 674, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.fuub" - }, - "response": { - "bodySize": 809, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 809, - "text": "{\"data\":{\"id\":\"tib.fuub\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universitätsbibliothek der FU Berlin Hochschulschriftenstelle u. Dokumentenserver\",\"symbol\":\"TIB.FUUB\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"edocs@ub.fu-berlin.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"edocs.fu-berlin.de,diss.fu-berlin.de,dspace.ub.fu-berlin.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2014-12-18T07:00:01.000Z\",\"updated\":\"2019-02-28T15:18:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17169\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":321,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1167, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1167 - } - }, - { - "_id": "282b28c44dd286e9ebb5d56fa9f974db", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 675, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.dagst" - }, - "response": { - "bodySize": 685, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 685, - "text": "{\"data\":{\"id\":\"tib.dagst\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Dagstuhl\",\"symbol\":\"TIB.DAGST\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"michael.wagner@dagstuhl.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"dagstuhl.de\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2011-06-08T14:27:35.000Z\",\"updated\":\"2019-12-18T13:38:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4230\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":147,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1405, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1405 - } - }, - { - "_id": "85bbfcbe0de553d48005e4bce94fdd79", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 677, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.zimtest" - }, - "response": { - "bodySize": 720, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 720, - "text": "{\"data\":{\"id\":\"tib.zimtest\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"knipprath@hhu.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"rdtest.hhu.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.01234\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":63,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1417, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1417 - } - }, - { - "_id": "9037f1cedb38ef1c4976bba6290b47a2", + "_id": "0a270f6f53b306f995ed96fe18442055", "_order": 0, "cache": {}, "request": { @@ -1419,73 +239,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ubs" - }, - "response": { - "bodySize": 806, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 806, - "text": "{\"data\":{\"id\":\"tib.ubs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universität Stuttgart - IZUS/UB, Holzgartenstraße 16, 70174 Stuttgart,\",\"symbol\":\"TIB.UBS\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"hartwig.alpers@ub.uni-stuttgart.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"ub.uni-stuttgart.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2014-09-26T06:14:59.000Z\",\"updated\":\"2018-08-26T01:30:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":233,\"prefixCount\":2}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1497, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1497 - } - }, - { - "_id": "9910358ea4f9f1badced693ac4e2a57c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 678, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.fraunirb" + "url": "https://api.test.datacite.org/repositories/tib.haw" }, "response": { - "bodySize": 749, + "bodySize": 675, "content": { "mimeType": "application/json; charset=utf-8", - "size": 749, - "text": "{\"data\":{\"id\":\"tib.fraunirb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Fraunhofer-Informationszentrum Raum und Bau (IRB)\",\"symbol\":\"TIB.FRAUNIRB\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"florian.fritze@irb.fraunhofer.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"publica.fraunhofer.de\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-25T07:28:38.000Z\",\"updated\":\"2019-08-21T08:54:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0247\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":1}}" + "size": 675, + "text": "{\"data\":{\"id\":\"tib.haw\",\"type\":\"repositories\",\"attributes\":{\"name\":\"HAW Hamburg\",\"symbol\":\"TIB.HAW\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"leif.klemstein@haw-hamburg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-09-11T15:07:18.000Z\",\"updated\":\"2019-09-13T09:15:44.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7951\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1504,8 +265,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1500, + "startedDateTime": "2020-05-04T16:41:56.759Z", + "time": 250, "timings": { "blocked": -1, "connect": -1, @@ -1513,11 +274,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1500 + "wait": 250 } }, { - "_id": "d4948b0c4f093700bae1a0ff0f2df0db", + "_id": "f651ae60cf55007e8fb9695b460a0c56", "_order": 0, "cache": {}, "request": { @@ -1537,132 +298,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.fdmuh" - }, - "response": { - "bodySize": 784, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 784, - "text": "{\"data\":{\"id\":\"tib.fdmuh\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universität Hamburg, Zentrum für nachhaltiges Forschungsdatenmanagement\",\"symbol\":\"TIB.FDMUH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"stefan.thiemann@uni-hamburg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"uni-hamburg.de,fdm.uni-hamburg.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-08-25T07:21:05.000Z\",\"updated\":\"2019-05-16T14:00:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0313\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":132,\"prefixCount\":1}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1503, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1503 - } - }, - { - "_id": "b1395074c91020571476431e32b7f8a2", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 677, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.ubtdois" - }, - "response": { - "bodySize": 838, - "content": { - "mimeType": "application/json; charset=utf-8", - "size": 838, - "text": "{\"data\":{\"id\":\"tib.ubtdois\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Universitätsbibliothek Tübingen\",\"symbol\":\"TIB.UBTDOIS\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"ursula.woerz@uni-tuebingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"uni-tuebingen.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2018-08-26T01:30:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":119,\"prefixCount\":4}}" - }, - "cookies": [], - "headers": [ - { - "name": "cache-control", - "value": "max-age=0, private, must-revalidate" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - } - ], - "headersSize": 101, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1505, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1505 - } - }, - { - "_id": "849f966dc052d3b85fb84cdf1754fcdf", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "name": "accept", - "value": "application/vnd.api+json" - }, - { - "name": "content-type", - "value": "text/plain;charset=utf-8" - } - ], - "headersSize": 673, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/tib.tud" + "url": "https://api.test.datacite.org/repositories/tib.repod" }, "response": { - "bodySize": 775, + "bodySize": 779, "content": { "mimeType": "application/json; charset=utf-8", - "size": 775, - "text": "{\"data\":{\"id\":\"tib.tud\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Technische Universität Dresden\",\"symbol\":\"TIB.TUD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"holger.mickler@tu-dresden.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"opara.zih.tu-dresden.de,masi.zih.tu-dresden.de,oparadev.zih.tu-dresden.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-11-24T15:15:24.000Z\",\"updated\":\"2018-08-26T01:31:03.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0180\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":39,\"prefixCount\":1}}" + "size": 779, + "text": "{\"data\":{\"id\":\"tib.repod\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University of Warsaw Interdisciplinary Centre for Mathematical and Computational Modelling\",\"symbol\":\"TIB.REPOD\",\"re3data\":null,\"opendoar\":null,\"year\":2015,\"systemEmail\":\"wf@icm.edu.pl\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"repod.pon.edu.pl,icm.edu.pl\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2015-07-02T05:15:03.000Z\",\"updated\":\"2019-04-24T09:43:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.18150\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":32,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1681,8 +324,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:32.369Z", - "time": 1582, + "startedDateTime": "2020-05-04T16:41:56.759Z", + "time": 260, "timings": { "blocked": -1, "connect": -1, @@ -1690,7 +333,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1582 + "wait": 260 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-info_2741953062/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-info_2741953062/recording.har index 7694b105f..8f1af4236 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-info_2741953062/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-info_2741953062/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting provider TIB info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:28.888Z", - "time": 89, + "startedDateTime": "2020-05-04T16:41:53.470Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 102 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/tib/stats" }, "response": { - "bodySize": 1548, + "bodySize": 1550, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1548, - "text": "{\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":44},{\"id\":\"2012\",\"title\":\"2012\",\"count\":54},{\"id\":\"2013\",\"title\":\"2013\",\"count\":76},{\"id\":\"2014\",\"title\":\"2014\",\"count\":100},{\"id\":\"2015\",\"title\":\"2015\",\"count\":134},{\"id\":\"2016\",\"title\":\"2016\",\"count\":175},{\"id\":\"2017\",\"title\":\"2017\",\"count\":210},{\"id\":\"2018\",\"title\":\"2018\",\"count\":227},{\"id\":\"2019\",\"title\":\"2019\",\"count\":248},{\"id\":\"2020\",\"title\":\"2020\",\"count\":252}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3311},{\"id\":\"2019\",\"title\":\"2019\",\"count\":15226},{\"id\":\"2018\",\"title\":\"2018\",\"count\":14102},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1152},{\"id\":\"2016\",\"title\":\"2016\",\"count\":203},{\"id\":\"2015\",\"title\":\"2015\",\"count\":129},{\"id\":\"2014\",\"title\":\"2014\",\"count\":507},{\"id\":\"2013\",\"title\":\"2013\",\"count\":123},{\"id\":\"2012\",\"title\":\"2012\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":7825},{\"id\":\"other\",\"title\":\"Other\",\"count\":3605},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":1949},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1001},{\"id\":\"image\",\"title\":\"Image\",\"count\":607},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":306},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":158},{\"id\":\"software\",\"title\":\"Software\",\"count\":27},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":20},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":4},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}]}" + "size": 1550, + "text": "{\"clients\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":44},{\"id\":\"2012\",\"title\":\"2012\",\"count\":54},{\"id\":\"2013\",\"title\":\"2013\",\"count\":76},{\"id\":\"2014\",\"title\":\"2014\",\"count\":100},{\"id\":\"2015\",\"title\":\"2015\",\"count\":134},{\"id\":\"2016\",\"title\":\"2016\",\"count\":175},{\"id\":\"2017\",\"title\":\"2017\",\"count\":210},{\"id\":\"2018\",\"title\":\"2018\",\"count\":227},{\"id\":\"2019\",\"title\":\"2019\",\"count\":248},{\"id\":\"2020\",\"title\":\"2020\",\"count\":252}],\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":15485},{\"id\":\"2019\",\"title\":\"2019\",\"count\":15227},{\"id\":\"2018\",\"title\":\"2018\",\"count\":14102},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1152},{\"id\":\"2016\",\"title\":\"2016\",\"count\":203},{\"id\":\"2015\",\"title\":\"2015\",\"count\":129},{\"id\":\"2014\",\"title\":\"2014\",\"count\":507},{\"id\":\"2013\",\"title\":\"2013\",\"count\":123},{\"id\":\"2012\",\"title\":\"2012\",\"count\":14},{\"id\":\"2011\",\"title\":\"2011\",\"count\":2}],\"resourceTypes\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":12451},{\"id\":\"text\",\"title\":\"Text\",\"count\":7893},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2040},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":1001},{\"id\":\"image\",\"title\":\"Image\",\"count\":607},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":306},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":158},{\"id\":\"software\",\"title\":\"Software\",\"count\":27},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":20},{\"id\":\"service\",\"title\":\"Service\",\"count\":5},{\"id\":\"event\",\"title\":\"Event\",\"count\":4},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":2},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":2},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:29.055Z", - "time": 257, + "startedDateTime": "2020-05-04T16:41:53.697Z", + "time": 235, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 257 + "wait": 235 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-repositories_3136768718/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-repositories_3136768718/recording.har index 6047d139c..6b4e64f26 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-repositories_3136768718/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB-repositories_3136768718/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting provider TIB repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:30.371Z", - "time": 111, + "startedDateTime": "2020-05-04T16:41:54.594Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 111 + "wait": 91 } }, { @@ -147,11 +147,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=tib&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 19008, + "bodySize": 18959, "content": { "mimeType": "application/json; charset=utf-8", - "size": 19008, - "text": "{\"data\":[{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"globusUuid\":null,\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"salesforceId\":null,\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.ama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AMA Service GmbH\",\"symbol\":\"TIB.AMA\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"boedeker@sensorfairs.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ama-science.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-11-04T07:06:54.000Z\",\"updated\":\"2018-08-26T01:30:27.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5162\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.hefdi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AMAD Repository, HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2020-04-03T15:15:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.014\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.apeiron\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Apeiron WSBPI Academy of Security of Public and Individual in Krakow\",\"symbol\":\"TIB.APEIRON\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"science@apeiron.edu.pl\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"security-dimensions.pl,kultura-bezpieczenstwa.pl\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-02-10T12:22:44.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0239\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.weimar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bauhaus Universität Weimar\",\"symbol\":\"TIB.WEIMAR\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"heidi.traeger@uni-weimar.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"uni-weimar.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-06T09:04:35.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0317\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.beilst\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Beilstein-Institut zur Förderung der Chemischen Wissenschaften\",\"symbol\":\"TIB.BEILST\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ckettner@beilstein-institut.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"beilstein-strenda-db.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-07-14T11:41:52.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.test-hse\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliothek der Hochschule Esslingen - University of Applied Sciences\",\"symbol\":\"TIB.TEST-HSE\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"bibliothek@hs-esslingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-02T09:26:22.000Z\",\"updated\":\"2019-05-02T14:20:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70037\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.gfzbib\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliothek des Wissenschaftsparks Albert Einstein\",\"symbol\":\"TIB.GFZBIB\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"rab@gfz-potsdam.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"gfz-potsdam.de,allianz-initiative.de,pik-potsdam.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-08-01T08:55:52.000Z\",\"updated\":\"2018-08-26T01:30:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bsz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliotheksservice-Zentrum Baden-Wuerttemberg\",\"symbol\":\"TIB.BSZ\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"carina.winter@bsz-bw.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"bsz-bw.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-11-08T09:56:18.000Z\",\"updated\":\"2018-08-26T01:31:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0178\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bikf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Biodiversity and Climate Research Centre\",\"symbol\":\"TIB.BIKF\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"pbe_services@senckenberg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"senckenberg.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2013-06-12T14:15:08.000Z\",\"updated\":\"2018-08-26T01:30:36.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12761\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.for816\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Biodiversity and Sustainable Management of a Megadiverse Mountain Ecosystem in South Ecuador\",\"symbol\":\"TIB.FOR816\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"thomas.lotz@staff.uni-marburg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"tropicalmountainforest.org,lcrs.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-07-15T07:34:45.000Z\",\"updated\":\"2018-08-26T01:30:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5678\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bonares\",\"type\":\"repositories\",\"attributes\":{\"name\":\"BonaRes Leibniz-Zentrum für Agrarlandschaftsforschung (ZALF) e.V. Datenzentrum Agrarlandschaft\",\"symbol\":\"TIB.BONARES\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"uheinrich@zalf.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"bonares.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-02-29T09:48:22.000Z\",\"updated\":\"2018-08-26T01:30:55.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20387\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.btu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brandenburgische Technische Universität Cottbus-Senftenberg\",\"symbol\":\"TIB.BTU\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"christine.mast@b-tu.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-02-06T09:43:14.000Z\",\"updated\":\"2019-02-06T14:55:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21396\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.baua\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Arbeitsschutz und Arbeitsmedizin (BAuA)\",\"symbol\":\"TIB.BAUA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"imhof.stephan@baua.bund.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"baua.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-01-15T11:31:40.000Z\",\"updated\":\"2018-08-26T01:30:54.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0152\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.baua-doi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Arbeitsschutz und Arbeitsmedizin (BAuA)\",\"symbol\":\"TIB.BAUA-DOI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"publikationen6.2@baua.bund.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"baua.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-06-09T10:06:30.000Z\",\"updated\":\"2018-08-26T01:30:58.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21934\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bafg\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Gewässerkunde\",\"symbol\":\"TIB.BAFG\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"essig@bafg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"bafg.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-06-28T11:15:44.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5675\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.test-bam\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Materialforschung und –prüfung (BAM)\",\"symbol\":\"TIB.TEST-BAM\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jan.harloff@bam.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-02-21T07:52:01.000Z\",\"updated\":\"2019-02-21T17:06:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21402\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.baw\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Wasserbau\",\"symbol\":\"TIB.BAW\",\"re3data\":null,\"opendoar\":null,\"year\":2015,\"systemEmail\":\"marquerite.schnelle@baw.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"baw.de,kfki.de,publikationen.karlsruhe.baw.de,vzb.baw.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2015-09-10T10:15:02.000Z\",\"updated\":\"2018-08-26T01:30:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.ctt\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Cellular Therapy and Transplantation\",\"symbol\":\"TIB.CTT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"xml-metadaten@ctt-journal.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ctt-journal.com,science-connections.com\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-12T07:41:47.000Z\",\"updated\":\"2018-08-26T01:30:27.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.confident-test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ConfIDent\",\"symbol\":\"TIB.CONFIDENT-TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"confident@tib.eu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"multidisciplinary\"],\"language\":[\"en\",\"de\"],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://projects.tib.eu/confident/\",\"salesforceId\":null,\"created\":\"2020-01-16T12:01:47.000Z\",\"updated\":\"2020-01-16T12:04:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"stephanie.hagemann@tib.eu\",\"givenName\":\"Stephanie\",\"familyName\":\"Hagemann-Wilholt\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80159\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.dagst\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Dagstuhl\",\"symbol\":\"TIB.DAGST\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"michael.wagner@dagstuhl.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"dagstuhl.de\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2011-06-08T14:27:35.000Z\",\"updated\":\"2019-12-18T13:38:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4230\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.decathlon\",\"type\":\"repositories\",\"attributes\":{\"name\":\"decatlhon\",\"symbol\":\"TIB.DECATHLON\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"obama@wh.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-14T13:51:02.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dful\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Deffusion-Fundamentals Uni Leipzig\",\"symbol\":\"TIB.DFUL\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"c.krich@gmx.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"uni-leibzig.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-09-23T12:19:32.000Z\",\"updated\":\"2018-08-26T01:31:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0173\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":252,\"totalPages\":11,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4},{\"id\":\"2019\",\"title\":\"2019\",\"count\":23},{\"id\":\"2018\",\"title\":\"2018\",\"count\":19},{\"id\":\"2017\",\"title\":\"2017\",\"count\":35},{\"id\":\"2016\",\"title\":\"2016\",\"count\":39},{\"id\":\"2015\",\"title\":\"2015\",\"count\":34},{\"id\":\"2014\",\"title\":\"2014\",\"count\":24},{\"id\":\"2013\",\"title\":\"2013\",\"count\":22},{\"id\":\"2012\",\"title\":\"2012\",\"count\":10},{\"id\":\"2011\",\"title\":\"2011\",\"count\":42}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":249},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":3}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":2},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2}],\"software\":[{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"other\",\"title\":\"Other\",\"count\":3},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=tib&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=tib&query=&repository-type=&software=&sort=&year=\"}}" + "size": 18959, + "text": "{\"data\":[{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"globusUuid\":null,\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"salesforceId\":null,\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.ama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AMA Service GmbH\",\"symbol\":\"TIB.AMA\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"boedeker@sensorfairs.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ama-science.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-11-04T07:06:54.000Z\",\"updated\":\"2018-08-26T01:30:27.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5162\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.hefdi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AMAD Repository, HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2020-04-03T15:15:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.014\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.apeiron\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Apeiron WSBPI Academy of Security of Public and Individual in Krakow\",\"symbol\":\"TIB.APEIRON\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"science@apeiron.edu.pl\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"security-dimensions.pl,kultura-bezpieczenstwa.pl\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-02-10T12:22:44.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0239\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.weimar\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bauhaus Universität Weimar\",\"symbol\":\"TIB.WEIMAR\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"heidi.traeger@uni-weimar.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"uni-weimar.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-06T09:04:35.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0317\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.beilst\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Beilstein-Institut zur Förderung der Chemischen Wissenschaften\",\"symbol\":\"TIB.BEILST\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ckettner@beilstein-institut.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"beilstein-strenda-db.org\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-07-14T11:41:52.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.test-hse\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliothek der Hochschule Esslingen - University of Applied Sciences\",\"symbol\":\"TIB.TEST-HSE\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"bibliothek@hs-esslingen.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-02T09:26:22.000Z\",\"updated\":\"2019-05-02T14:20:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70037\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.gfzbib\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliothek des Wissenschaftsparks Albert Einstein\",\"symbol\":\"TIB.GFZBIB\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"rab@gfz-potsdam.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"gfz-potsdam.de,allianz-initiative.de,pik-potsdam.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-08-01T08:55:52.000Z\",\"updated\":\"2018-08-26T01:30:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bsz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bibliotheksservice-Zentrum Baden-Wuerttemberg\",\"symbol\":\"TIB.BSZ\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"carina.winter@bsz-bw.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"bsz-bw.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-11-08T09:56:18.000Z\",\"updated\":\"2018-08-26T01:31:02.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0178\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bikf\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Biodiversity and Climate Research Centre\",\"symbol\":\"TIB.BIKF\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"pbe_services@senckenberg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"senckenberg.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2013-06-12T14:15:08.000Z\",\"updated\":\"2018-08-26T01:30:36.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12761\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.for816\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Biodiversity and Sustainable Management of a Megadiverse Mountain Ecosystem in South Ecuador\",\"symbol\":\"TIB.FOR816\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"thomas.lotz@staff.uni-marburg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"tropicalmountainforest.org,lcrs.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-07-15T07:34:45.000Z\",\"updated\":\"2018-08-26T01:30:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5678\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bonares\",\"type\":\"repositories\",\"attributes\":{\"name\":\"BonaRes Leibniz-Zentrum für Agrarlandschaftsforschung (ZALF) e.V. Datenzentrum Agrarlandschaft\",\"symbol\":\"TIB.BONARES\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"uheinrich@zalf.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"bonares.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-02-29T09:48:22.000Z\",\"updated\":\"2018-08-26T01:30:55.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20387\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.btu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brandenburgische Technische Universität Cottbus-Senftenberg\",\"symbol\":\"TIB.BTU\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"christine.mast@b-tu.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2019-02-06T09:43:14.000Z\",\"updated\":\"2019-02-06T14:55:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21396\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.baua\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Arbeitsschutz und Arbeitsmedizin (BAuA)\",\"symbol\":\"TIB.BAUA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"imhof.stephan@baua.bund.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"baua.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-01-15T11:31:40.000Z\",\"updated\":\"2018-08-26T01:30:54.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0152\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.baua-doi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Arbeitsschutz und Arbeitsmedizin (BAuA)\",\"symbol\":\"TIB.BAUA-DOI\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"publikationen6.2@baua.bund.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"baua.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-06-09T10:06:30.000Z\",\"updated\":\"2018-08-26T01:30:58.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21934\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.bafg\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Gewässerkunde\",\"symbol\":\"TIB.BAFG\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"essig@bafg.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"bafg.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-06-28T11:15:44.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5675\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.test-bam\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Materialforschung und –prüfung (BAM)\",\"symbol\":\"TIB.TEST-BAM\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"jan.harloff@bam.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-02-21T07:52:01.000Z\",\"updated\":\"2020-05-04T09:33:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21402\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.baw\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Bundesanstalt für Wasserbau\",\"symbol\":\"TIB.BAW\",\"re3data\":null,\"opendoar\":null,\"year\":2015,\"systemEmail\":\"marquerite.schnelle@baw.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"baw.de,kfki.de,publikationen.karlsruhe.baw.de,vzb.baw.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2015-09-10T10:15:02.000Z\",\"updated\":\"2018-08-26T01:30:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.ctt\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Cellular Therapy and Transplantation\",\"symbol\":\"TIB.CTT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"xml-metadaten@ctt-journal.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ctt-journal.com,science-connections.com\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-12T07:41:47.000Z\",\"updated\":\"2018-08-26T01:30:27.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.confident-test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ConfIDent\",\"symbol\":\"TIB.CONFIDENT-TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"confident@tib.eu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"multidisciplinary\"],\"language\":[\"en\",\"de\"],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://projects.tib.eu/confident/\",\"salesforceId\":null,\"created\":\"2020-01-16T12:01:47.000Z\",\"updated\":\"2020-01-16T12:04:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"stephanie.hagemann@tib.eu\",\"givenName\":\"Stephanie\",\"familyName\":\"Hagemann-Wilholt\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80159\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.dagst\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Dagstuhl\",\"symbol\":\"TIB.DAGST\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"michael.wagner@dagstuhl.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"dagstuhl.de\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2011-06-08T14:27:35.000Z\",\"updated\":\"2019-12-18T13:38:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4230\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.decathlon\",\"type\":\"repositories\",\"attributes\":{\"name\":\"decatlhon\",\"symbol\":\"TIB.DECATHLON\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"obama@wh.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-14T13:51:02.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dful\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Deffusion-Fundamentals Uni Leipzig\",\"symbol\":\"TIB.DFUL\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"c.krich@gmx.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"uni-leibzig.de\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2016-09-23T12:19:32.000Z\",\"updated\":\"2018-08-26T01:31:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0173\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":252,\"totalPages\":11,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":4},{\"id\":\"2019\",\"title\":\"2019\",\"count\":23},{\"id\":\"2018\",\"title\":\"2018\",\"count\":19},{\"id\":\"2017\",\"title\":\"2017\",\"count\":35},{\"id\":\"2016\",\"title\":\"2016\",\"count\":39},{\"id\":\"2015\",\"title\":\"2015\",\"count\":34},{\"id\":\"2014\",\"title\":\"2014\",\"count\":24},{\"id\":\"2013\",\"title\":\"2013\",\"count\":22},{\"id\":\"2012\",\"title\":\"2012\",\"count\":10},{\"id\":\"2011\",\"title\":\"2011\",\"count\":42}],\"providers\":[{\"id\":\"tib\",\"title\":null,\"count\":252}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":249},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":3}],\"repositoryTypes\":[{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":2},{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":1},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":1}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2}],\"software\":[{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"other\",\"title\":\"Other\",\"count\":3},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&consortium-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=tib&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=tib&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -170,8 +170,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:30.502Z", - "time": 234, + "startedDateTime": "2020-05-04T16:41:54.696Z", + "time": 201, "timings": { "blocked": -1, "connect": -1, @@ -179,7 +179,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 234 + "wait": 201 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB_4267189074/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB_4267189074/recording.har index 93d93dec8..00ee165eb 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB_4267189074/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-TIB_4267189074/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting provider TIB", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:26.201Z", - "time": 151, + "startedDateTime": "2020-05-04T16:41:50.059Z", + "time": 132, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 151 + "wait": 132 } } ], diff --git a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-datacite-prefixes_2196246520/recording.har b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-datacite-prefixes_2196246520/recording.har index 7c823f4f8..13103c966 100644 --- a/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-datacite-prefixes_2196246520/recording.har +++ b/recordings/Acceptance-staff_admin-provider_521206357/visiting-provider-datacite-prefixes_2196246520/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | provider/visiting provider datacite prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7126, + "bodySize": 7199, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7126, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite944\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:30:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7199, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.125Z", - "time": 97, + "startedDateTime": "2020-05-04T16:41:57.190Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 92 } }, { @@ -143,11 +143,11 @@ "url": "https://api.test.datacite.org/provider-prefixes?client-id=&consortium-id=&consortium-organization-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 12131, + "bodySize": 12084, "content": { "mimeType": "application/json; charset=utf-8", - "size": 12131, - "text": "{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-30T06:10:40.000Z\",\"updatedAt\":\"2020-04-18T04:09:48.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]}}},{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T12:00:35.000Z\",\"updatedAt\":\"2020-03-22T08:12:41.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T10:33:16.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-11-10T09:41:25.000Z\",\"updatedAt\":\"2019-11-10T09:41:25.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-08-02T07:02:34.000Z\",\"updatedAt\":\"2019-08-02T07:02:34.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T16:24:00.000Z\",\"updatedAt\":\"2019-06-25T16:24:00.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T12:37:16.000Z\",\"updatedAt\":\"2019-06-25T12:37:16.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-05-27T07:58:19.000Z\",\"updatedAt\":\"2019-05-27T07:58:19.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"bf468ed7-0d22-4b4b-bb95-76086258062b\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-05-07T11:24:06.000Z\",\"updatedAt\":\"2018-05-07T11:24:06.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70048\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.rph\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"303f6e7b-ed1d-4b07-b69b-6dd42829b678\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-09-17T14:36:35.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70001\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"9464760f-3435-4123-936d-f2f91c7945f0\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-09-17T14:36:35.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70002\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"cef1d55a-4195-46a2-a7a9-84383ccef486\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"204f067c-ea23-4279-91f3-296c285ff377\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:29.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0321\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.ucb\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e7a0a63-425a-41df-937b-dfe34bbaae06\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c128078e-beb4-4c8f-ad32-83a97cd22812\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:27.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0307\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"713dc344-91ed-4d22-abab-984ab67ef603\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"cad9ea30-f1e0-439c-9529-88a72307b0ca\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:23.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0309\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.axiom\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6e2aae51-ff25-4d49-9376-3fbf77dabb65\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"8d28593c-367c-488c-a21d-c3eef02e56b5\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:27.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0311\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.edi\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"370a84ca-adfa-4dbc-864d-ab45e9386c6e\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4be3fe5c-9100-4fbe-9c97-089dcee23f18\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:35.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0312\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.nus\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ee4c5498-ad88-4181-a75b-d67e8246cccf\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a4a64d6e-aed1-45b5-9ef1-da2f175d0ff1\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:33.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0308\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.cmcc\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7718c109-f987-4934-a170-42bb639473b8\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"aad7d7da-c40e-4232-af2f-c7f72e7cdb72\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:39.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0310\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.unibz\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"79a63e2a-825c-4169-a7be-e27f71aa88a8\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4859c957-daa6-425d-8d2f-9005148b448c\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:31.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0322\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.bl\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"642564f7-c660-4cf9-9b95-22a3c328008c\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"3abe78a9-5920-4806-a6eb-0cfa42d73497\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:37.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0320\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.dataone\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9bcde155-5bff-44e6-a900-8690e5b675b6\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"29ab198b-9665-4a38-bc9f-7f859d7c5592\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":\"2017-12-02T22:39:37.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24365\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.globus\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"b968c1da-7e00-4b86-b63c-9bcd1c46065c\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"9d8a22de-a6de-4a14-96e7-7ee7ce2c08b0\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":\"2017-12-02T22:39:38.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24357\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.samson\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"091e6abf-7652-49c1-8df0-7563c6ff7d00\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c563f65f-fd43-45c3-9c9f-1720bf274a71\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24407\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.roce\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"542508a8-18c8-4426-a578-11bb09e6fd69\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"5e850df6-6ea6-4946-8cef-a3f7c55f2375\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24411\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.nasa\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e36be2c6-0f49-4ebc-9587-d1a9920fbe4d\",\"type\":\"client-prefixes\"}]}}}],\"meta\":{\"total\":54,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":5},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1},{\"id\":\"2017\",\"title\":\"2017\",\"count\":12},{\"id\":\"2016\",\"title\":\"2016\",\"count\":28},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":53},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":1}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54}]},\"links\":{\"self\":\"https://api.test.datacite.org/provider-prefixes?client-id=&consortium-id=&consortium-organization-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/provider_prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=&year=\"}}" + "size": 12084, + "text": "{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-30T06:10:40.000Z\",\"updatedAt\":\"2020-04-18T04:09:48.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[]},\"clientPrefixes\":{\"data\":[]}}},{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T12:00:35.000Z\",\"updatedAt\":\"2020-03-22T08:12:41.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-20T10:33:16.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-11-10T09:41:25.000Z\",\"updatedAt\":\"2019-11-10T09:41:25.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-08-02T07:02:34.000Z\",\"updatedAt\":\"2019-08-02T07:02:34.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T16:24:00.000Z\",\"updatedAt\":\"2019-06-25T16:24:00.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-06-25T12:37:16.000Z\",\"updatedAt\":\"2019-06-25T12:37:16.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2019-05-27T07:58:19.000Z\",\"updatedAt\":\"2019-05-27T07:58:19.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"bf468ed7-0d22-4b4b-bb95-76086258062b\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2018-05-07T11:24:06.000Z\",\"updatedAt\":\"2018-05-07T11:24:06.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70048\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.rph\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"303f6e7b-ed1d-4b07-b69b-6dd42829b678\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-09-17T14:36:35.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70001\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"9464760f-3435-4123-936d-f2f91c7945f0\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-09-17T14:36:35.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.70002\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"cef1d55a-4195-46a2-a7a9-84383ccef486\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"204f067c-ea23-4279-91f3-296c285ff377\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:29.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0321\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.ucb\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e7a0a63-425a-41df-937b-dfe34bbaae06\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c128078e-beb4-4c8f-ad32-83a97cd22812\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:27.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0307\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"713dc344-91ed-4d22-abab-984ab67ef603\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"cad9ea30-f1e0-439c-9529-88a72307b0ca\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:23.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0309\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.axiom\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6e2aae51-ff25-4d49-9376-3fbf77dabb65\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"8d28593c-367c-488c-a21d-c3eef02e56b5\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:27.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0311\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.edi\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"370a84ca-adfa-4dbc-864d-ab45e9386c6e\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4be3fe5c-9100-4fbe-9c97-089dcee23f18\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:35.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0312\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.nus\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ee4c5498-ad88-4181-a75b-d67e8246cccf\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"a4a64d6e-aed1-45b5-9ef1-da2f175d0ff1\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:33.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0308\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.cmcc\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7718c109-f987-4934-a170-42bb639473b8\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"aad7d7da-c40e-4232-af2f-c7f72e7cdb72\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:39.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0310\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.unibz\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"79a63e2a-825c-4169-a7be-e27f71aa88a8\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"4859c957-daa6-425d-8d2f-9005148b448c\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:31.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0322\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.bl\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"642564f7-c660-4cf9-9b95-22a3c328008c\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"3abe78a9-5920-4806-a6eb-0cfa42d73497\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2017-12-02T22:39:37.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0320\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.dataone\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9bcde155-5bff-44e6-a900-8690e5b675b6\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2017-02-24T08:08:13.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"29ab198b-9665-4a38-bc9f-7f859d7c5592\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":\"2017-12-02T22:39:37.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24365\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.globus\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"b968c1da-7e00-4b86-b63c-9bcd1c46065c\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"9d8a22de-a6de-4a14-96e7-7ee7ce2c08b0\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":\"2017-12-02T22:39:38.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24357\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.samson\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"091e6abf-7652-49c1-8df0-7563c6ff7d00\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"c563f65f-fd43-45c3-9c9f-1720bf274a71\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24407\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.roce\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"542508a8-18c8-4426-a578-11bb09e6fd69\",\"type\":\"client-prefixes\"}]}}},{\"id\":\"5e850df6-6ea6-4946-8cef-a3f7c55f2375\",\"type\":\"provider-prefixes\",\"attributes\":{\"createdAt\":\"2016-12-15T17:55:28.000Z\",\"updatedAt\":null},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefix\":{\"data\":{\"id\":\"10.24411\",\"type\":\"prefixes\"}},\"clients\":{\"data\":[{\"id\":\"datacite.nasa\",\"type\":\"clients\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e36be2c6-0f49-4ebc-9587-d1a9920fbe4d\",\"type\":\"client-prefixes\"}]}}}],\"meta\":{\"total\":54,\"totalPages\":3,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2019\",\"title\":\"2019\",\"count\":5},{\"id\":\"2018\",\"title\":\"2018\",\"count\":1},{\"id\":\"2017\",\"title\":\"2017\",\"count\":12},{\"id\":\"2016\",\"title\":\"2016\",\"count\":28},{\"id\":\"2015\",\"title\":\"2015\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":1},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":1}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":53},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":1}],\"providers\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/provider-prefixes?client-id=&consortium-id=&consortium-organization-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=datacite&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/provider_prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -166,8 +166,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.232Z", - "time": 273, + "startedDateTime": "2020-05-04T16:41:57.292Z", + "time": 292, "timings": { "blocked": -1, "connect": -1, @@ -175,11 +175,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 273 + "wait": 292 } }, { - "_id": "9c69df4d8d2a08d32bcaaa32d3811630", + "_id": "8c690ce20943a4b97e8af5527915ae25", "_order": 0, "cache": {}, "request": { @@ -199,14 +199,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80225" + "url": "https://api.test.datacite.org/prefixes/10.24413" }, "response": { - "bodySize": 459, + "bodySize": 350, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 350, + "text": "{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24413\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -225,8 +225,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 128, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 175, "timings": { "blocked": -1, "connect": -1, @@ -234,11 +234,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 128 + "wait": 175 } }, { - "_id": "400f683e45bb78d709379708af2bcae9", + "_id": "64bcf2dcad6895b97a2f832bc2e6ede1", "_order": 0, "cache": {}, "request": { @@ -258,14 +258,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.33575" + "url": "https://api.test.datacite.org/prefixes/10.80220" }, "response": { - "bodySize": 461, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33575\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80220\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -284,8 +284,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 142, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 181, "timings": { "blocked": -1, "connect": -1, @@ -293,11 +293,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 142 + "wait": 181 } }, { - "_id": "8c690ce20943a4b97e8af5527915ae25", + "_id": "e321ea5048e7c9cab98aaa5f4ff0ff9b", "_order": 0, "cache": {}, "request": { @@ -317,14 +317,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24413" + "url": "https://api.test.datacite.org/prefixes/10.80067" }, "response": { - "bodySize": 350, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 350, - "text": "{\"data\":{\"id\":\"10.24413\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24413\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[]},\"providerPrefixes\":{\"data\":[{\"id\":\"09cff5c7-43e4-4027-9711-a94d7252fe07\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80067\",\"createdAt\":\"2019-07-03T13:59:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -343,8 +343,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 147, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 211, "timings": { "blocked": -1, "connect": -1, @@ -352,11 +352,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 147 + "wait": 211 } }, { - "_id": "64bcf2dcad6895b97a2f832bc2e6ede1", + "_id": "3c64dc3c27fd04d4aa1dc60b55d8647f", "_order": 0, "cache": {}, "request": { @@ -376,14 +376,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80220" + "url": "https://api.test.datacite.org/prefixes/10.33576" }, "response": { - "bodySize": 458, + "bodySize": 460, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.80220\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80220\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.bri\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"22ee585d-3cef-4083-b01d-6c83cb3bfa53\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"af007533-e610-4105-b9f7-c4619f56a3a6\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 460, + "text": "{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33576\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -402,8 +402,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 201, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 214, "timings": { "blocked": -1, "connect": -1, @@ -411,11 +411,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 201 + "wait": 214 } }, { - "_id": "3c64dc3c27fd04d4aa1dc60b55d8647f", + "_id": "e2f651abaf49af07fb5377ab3c619c8a", "_order": 0, "cache": {}, "request": { @@ -435,14 +435,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.33576" + "url": "https://api.test.datacite.org/prefixes/10.70126" }, "response": { - "bodySize": 460, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 460, - "text": "{\"data\":{\"id\":\"10.33576\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33576\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.cifor\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"aa80e453-89cb-4941-8783-d817657b215f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4f94445d-092f-4f88-af99-40403ba5b666\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70126\",\"createdAt\":\"2019-03-29T16:32:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -461,8 +461,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 228, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 227, "timings": { "blocked": -1, "connect": -1, @@ -470,11 +470,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 228 + "wait": 227 } }, { - "_id": "e321ea5048e7c9cab98aaa5f4ff0ff9b", + "_id": "0a1608e22e7e666cd4f81d5266ceb42c", "_order": 0, "cache": {}, "request": { @@ -490,18 +490,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 670, + "headersSize": 669, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80067" + "url": "https://api.test.datacite.org/prefixes/10.7968" }, "response": { - "bodySize": 461, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.80067\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80067\",\"createdAt\":\"2019-07-03T13:59:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"658250fd-cd7c-418f-a5f8-3dbbec54c780\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"7b0cda83-d599-4f3e-9009-cdc9c6ee93d2\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.7968\",\"createdAt\":\"2019-06-28T10:46:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -520,8 +520,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 229, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 236, "timings": { "blocked": -1, "connect": -1, @@ -529,11 +529,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 229 + "wait": 236 } }, { - "_id": "e2f651abaf49af07fb5377ab3c619c8a", + "_id": "87efab9923586148e5a426881b624b5c", "_order": 0, "cache": {}, "request": { @@ -553,14 +553,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70126" + "url": "https://api.test.datacite.org/prefixes/10.70002" }, "response": { - "bodySize": 459, + "bodySize": 463, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.70126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70126\",\"createdAt\":\"2019-03-29T16:32:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.mary\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c1f03b97-da63-4ddd-9e7d-9e82f88b766d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1f43c646-ea73-41de-99a2-2107ef92f86c\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 463, + "text": "{\"data\":{\"id\":\"10.70002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70002\",\"createdAt\":\"2017-09-17T14:36:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"cef1d55a-4195-46a2-a7a9-84383ccef486\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9464760f-3435-4123-936d-f2f91c7945f0\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -579,8 +579,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 308, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 303, "timings": { "blocked": -1, "connect": -1, @@ -588,11 +588,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 308 + "wait": 303 } }, { - "_id": "0a1608e22e7e666cd4f81d5266ceb42c", + "_id": "b02a9f0dc7d2ea95b6f7b821f6228333", "_order": 0, "cache": {}, "request": { @@ -608,18 +608,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 669, + "headersSize": 670, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.7968" + "url": "https://api.test.datacite.org/prefixes/10.70001" }, "response": { - "bodySize": 459, + "bodySize": 463, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.7968\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.7968\",\"createdAt\":\"2019-06-28T10:46:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.becker\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"1e73490d-fb8d-44ba-a95a-3ef3fb3c44f9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"10464fc4-544d-483f-b58f-1cb358078e65\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 463, + "text": "{\"data\":{\"id\":\"10.70001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70001\",\"createdAt\":\"2017-09-17T14:36:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -638,8 +638,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 312, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 344, "timings": { "blocked": -1, "connect": -1, @@ -647,11 +647,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 312 + "wait": 344 } }, { - "_id": "4d1cf57852130a759c653ec28a941a86", + "_id": "400f683e45bb78d709379708af2bcae9", "_order": 0, "cache": {}, "request": { @@ -667,18 +667,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 669, + "headersSize": 670, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0330" + "url": "https://api.test.datacite.org/prefixes/10.33575" }, "response": { - "bodySize": 457, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.33575\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.33575\",\"createdAt\":\"2018-06-04T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.drexel\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"29504379-8acb-400e-a23b-e9987c86959a\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a35592f7-d58a-4a07-b59f-ef7d84211282\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -697,8 +697,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 339, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 365, "timings": { "blocked": -1, "connect": -1, @@ -706,11 +706,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 339 + "wait": 365 } }, { - "_id": "90f26261cf3ef445da11f92aa4da236b", + "_id": "4d1cf57852130a759c653ec28a941a86", "_order": 0, "cache": {}, "request": { @@ -726,18 +726,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 678, + "headersSize": 669, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.bri" + "url": "https://api.test.datacite.org/prefixes/10.0330" }, "response": { - "bodySize": 706, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 706, - "text": "{\"data\":{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -756,8 +756,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 401, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 423, "timings": { "blocked": -1, "connect": -1, @@ -765,11 +765,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 401 + "wait": 423 } }, { - "_id": "c43438dca0b1ee1788b44f66314b9962", + "_id": "90f26261cf3ef445da11f92aa4da236b", "_order": 0, "cache": {}, "request": { @@ -785,18 +785,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 681, + "headersSize": 678, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.atmire" + "url": "https://api.test.datacite.org/repositories/datacite.bri" }, "response": { - "bodySize": 723, + "bodySize": 706, "content": { "mimeType": "application/json; charset=utf-8", - "size": 723, - "text": "{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":14,\"prefixCount\":2}}" + "size": 706, + "text": "{\"data\":{\"id\":\"datacite.bri\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Britta's test account\",\"symbol\":\"DATACITE.BRI\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"britta.dreyer@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-05T10:47:02.000Z\",\"updated\":\"2019-02-19T21:48:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80220\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -815,8 +815,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 426, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 446, "timings": { "blocked": -1, "connect": -1, @@ -824,7 +824,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 426 + "wait": 446 } }, { @@ -855,7 +855,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 742, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":16,\"prefixCount\":2}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -874,8 +874,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 449, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 478, "timings": { "blocked": -1, "connect": -1, @@ -883,11 +883,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 449 + "wait": 478 } }, { - "_id": "5ec33ce89d8df2fda2ab8bc9b5aa5215", + "_id": "9c69df4d8d2a08d32bcaaa32d3811630", "_order": 0, "cache": {}, "request": { @@ -903,18 +903,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 681, + "headersSize": 670, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.drexel" + "url": "https://api.test.datacite.org/prefixes/10.80225" }, "response": { - "bodySize": 702, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 702, - "text": "{\"data\":{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -933,8 +933,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 455, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 518, "timings": { "blocked": -1, "connect": -1, @@ -942,11 +942,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 455 + "wait": 518 } }, { - "_id": "dc7f6220f024e559957cfd8582b75a0f", + "_id": "3b3ffb184cb145e8c1fa693f3e340e86", "_order": 0, "cache": {}, "request": { @@ -962,18 +962,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 681, + "headersSize": 683, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.becker" + "url": "https://api.test.datacite.org/repositories/datacite.datacite" }, "response": { - "bodySize": 711, + "bodySize": 923, "content": { "mimeType": "application/json; charset=utf-8", - "size": 711, - "text": "{\"data\":{\"id\":\"datacite.becker\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Pascal Becker's test account\",\"symbol\":\"DATACITE.BECKER\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"pascal@the-library-code.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-01T11:09:54.000Z\",\"updated\":\"2019-11-01T11:10:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7968\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":10,\"prefixCount\":1}}" + "size": 923, + "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3}}" }, "cookies": [], "headers": [ @@ -992,8 +992,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 523, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 539, "timings": { "blocked": -1, "connect": -1, @@ -1001,11 +1001,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 523 + "wait": 539 } }, { - "_id": "b1c302df64e5010d03ddd91eb30fa082", + "_id": "dc7f6220f024e559957cfd8582b75a0f", "_order": 0, "cache": {}, "request": { @@ -1021,18 +1021,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 680, + "headersSize": 681, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.cifor" + "url": "https://api.test.datacite.org/repositories/datacite.becker" }, "response": { - "bodySize": 736, + "bodySize": 711, "content": { "mimeType": "application/json; charset=utf-8", - "size": 736, - "text": "{\"data\":{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"salesforceId\":null,\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 711, + "text": "{\"data\":{\"id\":\"datacite.becker\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Pascal Becker's test account\",\"symbol\":\"DATACITE.BECKER\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"pascal@the-library-code.de\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-11-01T11:09:54.000Z\",\"updated\":\"2019-11-01T11:10:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.7968\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":10,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1051,8 +1051,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 525, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 546, "timings": { "blocked": -1, "connect": -1, @@ -1060,11 +1060,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 525 + "wait": 546 } }, { - "_id": "36637d8ce972d45aa1f55b6b6f2d98a5", + "_id": "5ec33ce89d8df2fda2ab8bc9b5aa5215", "_order": 0, "cache": {}, "request": { @@ -1080,18 +1080,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 678, + "headersSize": 681, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.rph" + "url": "https://api.test.datacite.org/repositories/datacite.drexel" }, "response": { - "bodySize": 731, + "bodySize": 702, "content": { "mimeType": "application/json; charset=utf-8", - "size": 731, - "text": "{\"data\":{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":188,\"prefixCount\":1}}" + "size": 702, + "text": "{\"data\":{\"id\":\"datacite.drexel\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Drexel University Libraries\",\"symbol\":\"DATACITE.DREXEL\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"djc54@drexel.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-06-25T12:35:03.000Z\",\"updated\":\"2019-08-27T15:08:56.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33575\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1110,8 +1110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 607, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 603, "timings": { "blocked": -1, "connect": -1, @@ -1119,11 +1119,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 607 + "wait": 603 } }, { - "_id": "77b265592e9c515fef89646f76ba207b", + "_id": "b1c302df64e5010d03ddd91eb30fa082", "_order": 0, "cache": {}, "request": { @@ -1139,18 +1139,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 679, + "headersSize": 680, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.mary" + "url": "https://api.test.datacite.org/repositories/datacite.cifor" }, "response": { - "bodySize": 692, + "bodySize": 736, "content": { "mimeType": "application/json; charset=utf-8", - "size": 692, - "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-02-25T17:07:29.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":84,\"prefixCount\":1}}" + "size": 736, + "text": "{\"data\":{\"id\":\"datacite.cifor\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Center for International Forestry Research\",\"symbol\":\"DATACITE.CIFOR\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"u.muchlish@cgiar.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":\"www.cifor.org\",\"salesforceId\":null,\"created\":\"2019-06-25T16:21:22.000Z\",\"updated\":\"2019-06-26T05:08:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.33576\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1169,8 +1169,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 619, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 645, "timings": { "blocked": -1, "connect": -1, @@ -1178,11 +1178,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 619 + "wait": 645 } }, { - "_id": "361573f2c757774b6c6ab7b427eae248", + "_id": "77b265592e9c515fef89646f76ba207b", "_order": 0, "cache": {}, "request": { @@ -1198,18 +1198,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 680, + "headersSize": 679, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.axiom" + "url": "https://api.test.datacite.org/repositories/datacite.mary" }, "response": { - "bodySize": 714, + "bodySize": 690, "content": { "mimeType": "application/json; charset=utf-8", - "size": 714, - "text": "{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" + "size": 690, + "text": "{\"data\":{\"id\":\"datacite.mary\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Mary test client\",\"symbol\":\"DATACITE.MARY\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"mhirsch@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2019-05-27T07:54:12.000Z\",\"updated\":\"2020-04-29T09:51:30.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70126\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":87,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1228,8 +1228,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 633, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 653, "timings": { "blocked": -1, "connect": -1, @@ -1237,11 +1237,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 633 + "wait": 653 } }, { - "_id": "3b3ffb184cb145e8c1fa693f3e340e86", + "_id": "c43438dca0b1ee1788b44f66314b9962", "_order": 0, "cache": {}, "request": { @@ -1257,18 +1257,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 683, + "headersSize": 681, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.datacite" + "url": "https://api.test.datacite.org/repositories/datacite.atmire" }, "response": { - "bodySize": 923, + "bodySize": 723, "content": { "mimeType": "application/json; charset=utf-8", - "size": 923, - "text": "{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Repository\",\"symbol\":\"DATACITE.DATACITE\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"support@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[\"en\",\"fr\"],\"certificate\":[],\"domains\":\"datacite.org\",\"issn\":{\"issnl\":null,\"print\":\"1545-7885\",\"electronic\":\"1544-9173\"},\"url\":null,\"salesforceId\":null,\"created\":\"2011-12-07T13:43:39.000Z\",\"updated\":\"2019-08-24T06:22:34.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"mfenner@datacite.org\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":196,\"prefixCount\":3}}" + "size": 723, + "text": "{\"data\":{\"id\":\"datacite.atmire\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Atmire, Inc.\",\"symbol\":\"DATACITE.ATMIRE\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"chris@atmire.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":null,\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-03-20T10:01:05.000Z\",\"updated\":\"2020-02-24T20:02:31.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":14,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -1287,8 +1287,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 710, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 656, "timings": { "blocked": -1, "connect": -1, @@ -1296,11 +1296,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 710 + "wait": 656 } }, { - "_id": "4ddefcd98ed1687683033614188d7c10", + "_id": "eb3eeb3ee825a0de4fb8af23f1c47b31", "_order": 0, "cache": {}, "request": { @@ -1316,18 +1316,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 670, + "headersSize": 669, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70048" + "url": "https://api.test.datacite.org/prefixes/10.0309" }, "response": { "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", "size": 458, - "text": "{\"data\":{\"id\":\"10.70048\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70048\",\"createdAt\":\"2017-09-17T14:36:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.rph\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"303f6e7b-ed1d-4b07-b69b-6dd42829b678\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bf468ed7-0d22-4b4b-bb95-76086258062b\",\"type\":\"provider-prefixes\"}]}}}}" + "text": "{\"data\":{\"id\":\"10.0309\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0309\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.axiom\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6e2aae51-ff25-4d49-9376-3fbf77dabb65\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cad9ea30-f1e0-439c-9529-88a72307b0ca\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1346,8 +1346,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 722, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 705, "timings": { "blocked": -1, "connect": -1, @@ -1355,11 +1355,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 722 + "wait": 705 } }, { - "_id": "87efab9923586148e5a426881b624b5c", + "_id": "4ddefcd98ed1687683033614188d7c10", "_order": 0, "cache": {}, "request": { @@ -1379,14 +1379,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70002" + "url": "https://api.test.datacite.org/prefixes/10.70048" }, "response": { - "bodySize": 463, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 463, - "text": "{\"data\":{\"id\":\"10.70002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70002\",\"createdAt\":\"2017-09-17T14:36:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"cef1d55a-4195-46a2-a7a9-84383ccef486\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9464760f-3435-4123-936d-f2f91c7945f0\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.70048\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70048\",\"createdAt\":\"2017-09-17T14:36:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.rph\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"303f6e7b-ed1d-4b07-b69b-6dd42829b678\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bf468ed7-0d22-4b4b-bb95-76086258062b\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1405,8 +1405,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 724, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 745, "timings": { "blocked": -1, "connect": -1, @@ -1414,11 +1414,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 724 + "wait": 745 } }, { - "_id": "212204dc1e37052dbe3e93c9813186ba", + "_id": "36637d8ce972d45aa1f55b6b6f2d98a5", "_order": 0, "cache": {}, "request": { @@ -1438,14 +1438,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.edi" + "url": "https://api.test.datacite.org/repositories/datacite.rph" }, "response": { - "bodySize": 713, + "bodySize": 731, "content": { "mimeType": "application/json; charset=utf-8", - "size": 713, - "text": "{\"data\":{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1926,\"prefixCount\":1}}" + "size": 731, + "text": "{\"data\":{\"id\":\"datacite.rph\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test RPH\",\"symbol\":\"DATACITE.RPH\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"rhallett@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"google.com,example.com\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-07T14:23:04.000Z\",\"updated\":\"2020-02-14T10:24:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70048\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":191,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1464,8 +1464,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 800, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 749, "timings": { "blocked": -1, "connect": -1, @@ -1473,11 +1473,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 800 + "wait": 749 } }, { - "_id": "fe380e0d2136e749acc6391f8c15e720", + "_id": "6200256ac8b931b5a2c08380c37ca1fc", "_order": 0, "cache": {}, "request": { @@ -1493,18 +1493,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 681, + "headersSize": 669, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.globus" + "url": "https://api.test.datacite.org/prefixes/10.0307" }, "response": { - "bodySize": 688, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 688, - "text": "{\"data\":{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.0307\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0307\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"713dc344-91ed-4d22-abab-984ab67ef603\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c128078e-beb4-4c8f-ad32-83a97cd22812\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1523,8 +1523,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 806, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 751, "timings": { "blocked": -1, "connect": -1, @@ -1532,11 +1532,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 806 + "wait": 751 } }, { - "_id": "6200256ac8b931b5a2c08380c37ca1fc", + "_id": "5b067cf700b7d2d50c239916b8771056", "_order": 0, "cache": {}, "request": { @@ -1556,14 +1556,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0307" + "url": "https://api.test.datacite.org/prefixes/10.0311" }, "response": { - "bodySize": 459, + "bodySize": 456, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.0307\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0307\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.atmire\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"713dc344-91ed-4d22-abab-984ab67ef603\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c128078e-beb4-4c8f-ad32-83a97cd22812\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 456, + "text": "{\"data\":{\"id\":\"10.0311\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0311\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.edi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"370a84ca-adfa-4dbc-864d-ab45e9386c6e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8d28593c-367c-488c-a21d-c3eef02e56b5\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1582,8 +1582,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 837, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 887, "timings": { "blocked": -1, "connect": -1, @@ -1591,11 +1591,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 837 + "wait": 887 } }, { - "_id": "a94204b33affc4cc0a028ca0a1e77d8a", + "_id": "2e5b013c2466646db3dad4de3eb5cebb", "_order": 0, "cache": {}, "request": { @@ -1615,14 +1615,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0321" + "url": "https://api.test.datacite.org/prefixes/10.0312" }, "response": { "bodySize": 456, "content": { "mimeType": "application/json; charset=utf-8", "size": 456, - "text": "{\"data\":{\"id\":\"10.0321\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0321\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.ucb\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e7a0a63-425a-41df-937b-dfe34bbaae06\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"204f067c-ea23-4279-91f3-296c285ff377\",\"type\":\"provider-prefixes\"}]}}}}" + "text": "{\"data\":{\"id\":\"10.0312\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0312\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.nus\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ee4c5498-ad88-4181-a75b-d67e8246cccf\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4be3fe5c-9100-4fbe-9c97-089dcee23f18\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1641,8 +1641,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 840, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 945, "timings": { "blocked": -1, "connect": -1, @@ -1650,11 +1650,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 840 + "wait": 945 } }, { - "_id": "a320f54cdcec048ee58f8af8d3fcc5d6", + "_id": "a94204b33affc4cc0a028ca0a1e77d8a", "_order": 0, "cache": {}, "request": { @@ -1670,18 +1670,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 677, + "headersSize": 669, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.bl" + "url": "https://api.test.datacite.org/prefixes/10.0321" }, "response": { - "bodySize": 683, + "bodySize": 456, "content": { "mimeType": "application/json; charset=utf-8", - "size": 683, - "text": "{\"data\":{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":139,\"prefixCount\":1}}" + "size": 456, + "text": "{\"data\":{\"id\":\"10.0321\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0321\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.ucb\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e7a0a63-425a-41df-937b-dfe34bbaae06\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"204f067c-ea23-4279-91f3-296c285ff377\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1700,8 +1700,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 843, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 975, "timings": { "blocked": -1, "connect": -1, @@ -1709,11 +1709,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 843 + "wait": 975 } }, { - "_id": "b02a9f0dc7d2ea95b6f7b821f6228333", + "_id": "212204dc1e37052dbe3e93c9813186ba", "_order": 0, "cache": {}, "request": { @@ -1729,18 +1729,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 670, + "headersSize": 678, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.70001" + "url": "https://api.test.datacite.org/repositories/datacite.edi" }, "response": { - "bodySize": 463, + "bodySize": 713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 463, - "text": "{\"data\":{\"id\":\"10.70001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.70001\",\"createdAt\":\"2017-09-17T14:36:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"80a2d36c-0cc3-458e-999d-a6e4ac6b7eca\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6d49c49a-e9f6-4326-af10-b31229146a6a\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 713, + "text": "{\"data\":{\"id\":\"datacite.edi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Environmental Data Initiative\",\"symbol\":\"DATACITE.EDI\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mark.servilla@gmail.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-10T10:07:37.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0311\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1964,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1759,8 +1759,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 845, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1340, "timings": { "blocked": -1, "connect": -1, @@ -1768,11 +1768,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 845 + "wait": 1340 } }, { - "_id": "5b067cf700b7d2d50c239916b8771056", + "_id": "a320f54cdcec048ee58f8af8d3fcc5d6", "_order": 0, "cache": {}, "request": { @@ -1788,18 +1788,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 669, + "headersSize": 677, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0311" + "url": "https://api.test.datacite.org/repositories/datacite.bl" }, "response": { - "bodySize": 456, + "bodySize": 683, "content": { "mimeType": "application/json; charset=utf-8", - "size": 456, - "text": "{\"data\":{\"id\":\"10.0311\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0311\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.edi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"370a84ca-adfa-4dbc-864d-ab45e9386c6e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8d28593c-367c-488c-a21d-c3eef02e56b5\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 683, + "text": "{\"data\":{\"id\":\"datacite.bl\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Brain-Life\",\"symbol\":\"DATACITE.BL\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"hayashis@iu.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-09-25T12:03:09.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0322\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":143,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -1818,8 +1818,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 904, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1355, "timings": { "blocked": -1, "connect": -1, @@ -1827,11 +1827,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 904 + "wait": 1355 } }, { - "_id": "eb3eeb3ee825a0de4fb8af23f1c47b31", + "_id": "ef738937a075ff47ff9dd952a5eacf30", "_order": 0, "cache": {}, "request": { @@ -1851,14 +1851,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0309" + "url": "https://api.test.datacite.org/prefixes/10.0322" }, "response": { - "bodySize": 458, + "bodySize": 455, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.0309\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0309\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.axiom\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6e2aae51-ff25-4d49-9376-3fbf77dabb65\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cad9ea30-f1e0-439c-9529-88a72307b0ca\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 455, + "text": "{\"data\":{\"id\":\"10.0322\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0322\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.bl\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"642564f7-c660-4cf9-9b95-22a3c328008c\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4859c957-daa6-425d-8d2f-9005148b448c\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1877,8 +1877,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 923, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1369, "timings": { "blocked": -1, "connect": -1, @@ -1886,11 +1886,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 923 + "wait": 1369 } }, { - "_id": "2e5b013c2466646db3dad4de3eb5cebb", + "_id": "d47c18498827e5360ef22bb5dbb83c0e", "_order": 0, "cache": {}, "request": { @@ -1910,14 +1910,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0312" + "url": "https://api.test.datacite.org/prefixes/10.0320" }, "response": { - "bodySize": 456, + "bodySize": 460, "content": { "mimeType": "application/json; charset=utf-8", - "size": 456, - "text": "{\"data\":{\"id\":\"10.0312\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0312\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.nus\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"ee4c5498-ad88-4181-a75b-d67e8246cccf\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4be3fe5c-9100-4fbe-9c97-089dcee23f18\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 460, + "text": "{\"data\":{\"id\":\"10.0320\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0320\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.dataone\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9bcde155-5bff-44e6-a900-8690e5b675b6\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3abe78a9-5920-4806-a6eb-0cfa42d73497\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1936,8 +1936,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 935, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1375, "timings": { "blocked": -1, "connect": -1, @@ -1945,11 +1945,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 935 + "wait": 1375 } }, { - "_id": "322796779a8e7e8aad28f3783b0a89b3", + "_id": "1b0dd0cc06bd912fad9286001db5ae48", "_order": 0, "cache": {}, "request": { @@ -1965,18 +1965,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 669, + "headersSize": 670, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0308" + "url": "https://api.test.datacite.org/prefixes/10.24407" }, "response": { - "bodySize": 457, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 457, - "text": "{\"data\":{\"id\":\"10.0308\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0308\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.cmcc\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7718c109-f987-4934-a170-42bb639473b8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a4a64d6e-aed1-45b5-9ef1-da2f175d0ff1\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.24407\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24407\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.roce\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"542508a8-18c8-4426-a578-11bb09e6fd69\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c563f65f-fd43-45c3-9c9f-1720bf274a71\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -1995,8 +1995,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 942, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1386, "timings": { "blocked": -1, "connect": -1, @@ -2004,7 +2004,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 942 + "wait": 1386 } }, { @@ -2054,8 +2054,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1015, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1395, "timings": { "blocked": -1, "connect": -1, @@ -2063,11 +2063,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1015 + "wait": 1395 } }, { - "_id": "d47c18498827e5360ef22bb5dbb83c0e", + "_id": "322796779a8e7e8aad28f3783b0a89b3", "_order": 0, "cache": {}, "request": { @@ -2087,14 +2087,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0320" + "url": "https://api.test.datacite.org/prefixes/10.0308" }, "response": { - "bodySize": 460, + "bodySize": 457, "content": { "mimeType": "application/json; charset=utf-8", - "size": 460, - "text": "{\"data\":{\"id\":\"10.0320\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0320\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.dataone\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9bcde155-5bff-44e6-a900-8690e5b675b6\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3abe78a9-5920-4806-a6eb-0cfa42d73497\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 457, + "text": "{\"data\":{\"id\":\"10.0308\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0308\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.cmcc\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7718c109-f987-4934-a170-42bb639473b8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a4a64d6e-aed1-45b5-9ef1-da2f175d0ff1\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -2113,8 +2113,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1022, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1408, "timings": { "blocked": -1, "connect": -1, @@ -2122,11 +2122,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1022 + "wait": 1408 } }, { - "_id": "ef738937a075ff47ff9dd952a5eacf30", + "_id": "45207307cc1e8b8622d8b812e6a84865", "_order": 0, "cache": {}, "request": { @@ -2142,18 +2142,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 669, + "headersSize": 670, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0322" + "url": "https://api.test.datacite.org/prefixes/10.24357" }, "response": { - "bodySize": 455, + "bodySize": 461, "content": { "mimeType": "application/json; charset=utf-8", - "size": 455, - "text": "{\"data\":{\"id\":\"10.0322\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0322\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.bl\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"642564f7-c660-4cf9-9b95-22a3c328008c\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4859c957-daa6-425d-8d2f-9005148b448c\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 461, + "text": "{\"data\":{\"id\":\"10.24357\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24357\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.samson\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"091e6abf-7652-49c1-8df0-7563c6ff7d00\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d8a22de-a6de-4a14-96e7-7ee7ce2c08b0\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -2172,8 +2172,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1038, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1418, "timings": { "blocked": -1, "connect": -1, @@ -2181,11 +2181,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1038 + "wait": 1418 } }, { - "_id": "1b0dd0cc06bd912fad9286001db5ae48", + "_id": "f56c9041027f7cd77cef22dbf7119823", "_order": 0, "cache": {}, "request": { @@ -2201,18 +2201,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 670, + "headersSize": 669, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24407" + "url": "https://api.test.datacite.org/prefixes/10.0310" }, "response": { - "bodySize": 459, + "bodySize": 458, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.24407\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24407\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.roce\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"542508a8-18c8-4426-a578-11bb09e6fd69\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c563f65f-fd43-45c3-9c9f-1720bf274a71\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 458, + "text": "{\"data\":{\"id\":\"10.0310\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0310\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.unibz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"79a63e2a-825c-4169-a7be-e27f71aa88a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"aad7d7da-c40e-4232-af2f-c7f72e7cdb72\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -2231,8 +2231,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1040, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1422, "timings": { "blocked": -1, "connect": -1, @@ -2240,11 +2240,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1040 + "wait": 1422 } }, { - "_id": "45207307cc1e8b8622d8b812e6a84865", + "_id": "86eabcc403e5c84188f0025b487155de", "_order": 0, "cache": {}, "request": { @@ -2264,14 +2264,14 @@ "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24357" + "url": "https://api.test.datacite.org/prefixes/10.24411" }, "response": { - "bodySize": 461, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 461, - "text": "{\"data\":{\"id\":\"10.24357\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24357\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.samson\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"091e6abf-7652-49c1-8df0-7563c6ff7d00\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d8a22de-a6de-4a14-96e7-7ee7ce2c08b0\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.24411\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24411\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.nasa\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e36be2c6-0f49-4ebc-9587-d1a9920fbe4d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5e850df6-6ea6-4946-8cef-a3f7c55f2375\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -2290,8 +2290,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1098, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1425, "timings": { "blocked": -1, "connect": -1, @@ -2299,11 +2299,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1098 + "wait": 1425 } }, { - "_id": "f56c9041027f7cd77cef22dbf7119823", + "_id": "3b6fecc5d1d8f6514ca95fa088bd2e01", "_order": 0, "cache": {}, "request": { @@ -2319,18 +2319,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 669, + "headersSize": 678, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.0310" + "url": "https://api.test.datacite.org/repositories/datacite.nus" }, "response": { - "bodySize": 458, + "bodySize": 707, "content": { "mimeType": "application/json; charset=utf-8", - "size": 458, - "text": "{\"data\":{\"id\":\"10.0310\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0310\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.unibz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"79a63e2a-825c-4169-a7be-e27f71aa88a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"aad7d7da-c40e-4232-af2f-c7f72e7cdb72\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 707, + "text": "{\"data\":{\"id\":\"datacite.nus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"National University of Singapore\",\"symbol\":\"DATACITE.NUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mlbcsw@nus.edu.sg\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-30T14:30:35.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0312\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2349,8 +2349,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1112, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1427, "timings": { "blocked": -1, "connect": -1, @@ -2358,11 +2358,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1112 + "wait": 1427 } }, { - "_id": "86eabcc403e5c84188f0025b487155de", + "_id": "8bdfaa0185bee6f278312f5d05c04624", "_order": 0, "cache": {}, "request": { @@ -2378,18 +2378,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 670, + "headersSize": 679, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.24411" + "url": "https://api.test.datacite.org/repositories/datacite.nasa" }, "response": { - "bodySize": 459, + "bodySize": 687, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.24411\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.24411\",\"createdAt\":\"2016-12-15T17:55:28.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.nasa\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"e36be2c6-0f49-4ebc-9587-d1a9920fbe4d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5e850df6-6ea6-4946-8cef-a3f7c55f2375\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 687, + "text": "{\"data\":{\"id\":\"datacite.nasa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"NASA\",\"symbol\":\"DATACITE.NASA\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"nasadev@mindgrub.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-05T09:08:34.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24411\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":667,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2408,8 +2408,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1152, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1429, "timings": { "blocked": -1, "connect": -1, @@ -2417,11 +2417,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1152 + "wait": 1429 } }, { - "_id": "9057c2716843429f44c5cf1cc06b12ba", + "_id": "fe380e0d2136e749acc6391f8c15e720", "_order": 0, "cache": {}, "request": { @@ -2437,18 +2437,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 678, + "headersSize": 681, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.ucb" + "url": "https://api.test.datacite.org/repositories/datacite.globus" }, "response": { - "bodySize": 738, + "bodySize": 688, "content": { "mimeType": "application/json; charset=utf-8", - "size": 738, - "text": "{\"data\":{\"id\":\"datacite.ucb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University Libraries University of Colorado Boulder\",\"symbol\":\"DATACITE.UCB\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"andrew.m.johnson@colorado.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-08-24T13:58:18.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0321\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 688, + "text": "{\"data\":{\"id\":\"datacite.globus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Globus\",\"symbol\":\"DATACITE.GLOBUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"pruyne@globus.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-12-05T11:37:44.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24365\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":1,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2467,8 +2467,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1377, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1436, "timings": { "blocked": -1, "connect": -1, @@ -2476,11 +2476,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1377 + "wait": 1436 } }, { - "_id": "8c6c979a45ad46326515f88512f9b3fc", + "_id": "54daae621ee7db2f9d3e5fb0a8fa0d86", "_order": 0, "cache": {}, "request": { @@ -2496,18 +2496,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 681, + "headersSize": 680, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.samson" + "url": "https://api.test.datacite.org/repositories/datacite.unibz" }, "response": { - "bodySize": 696, + "bodySize": 709, "content": { "mimeType": "application/json; charset=utf-8", - "size": 696, - "text": "{\"data\":{\"id\":\"datacite.samson\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Samson Labs\",\"symbol\":\"DATACITE.SAMSON\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"alex@samsonlabs.net\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-20T14:36:18.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24357\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 709, + "text": "{\"data\":{\"id\":\"datacite.unibz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University Bozen\",\"symbol\":\"DATACITE.UNIBZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"luigi.siciliano@unibz.it\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"unibz.it\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-28T06:33:26.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0310\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2526,8 +2526,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1380, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1438, "timings": { "blocked": -1, "connect": -1, @@ -2535,7 +2535,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1380 + "wait": 1438 } }, { @@ -2585,8 +2585,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1402, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1441, "timings": { "blocked": -1, "connect": -1, @@ -2594,11 +2594,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1402 + "wait": 1441 } }, { - "_id": "91b08a3622daa9c921540a7db2ebaffb", + "_id": "8c6c979a45ad46326515f88512f9b3fc", "_order": 0, "cache": {}, "request": { @@ -2614,18 +2614,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 682, + "headersSize": 681, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.dataone" + "url": "https://api.test.datacite.org/repositories/datacite.samson" }, "response": { - "bodySize": 1452, + "bodySize": 696, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1452, - "text": "{\"data\":{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"globusUuid\":null,\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"salesforceId\":null,\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 696, + "text": "{\"data\":{\"id\":\"datacite.samson\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Samson Labs\",\"symbol\":\"DATACITE.SAMSON\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"alex@samsonlabs.net\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-11-20T14:36:18.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24357\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2644,8 +2644,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1411, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1443, "timings": { "blocked": -1, "connect": -1, @@ -2653,11 +2653,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1411 + "wait": 1443 } }, { - "_id": "3b6fecc5d1d8f6514ca95fa088bd2e01", + "_id": "361573f2c757774b6c6ab7b427eae248", "_order": 0, "cache": {}, "request": { @@ -2673,18 +2673,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 678, + "headersSize": 680, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.nus" + "url": "https://api.test.datacite.org/repositories/datacite.axiom" }, "response": { - "bodySize": 707, + "bodySize": 714, "content": { "mimeType": "application/json; charset=utf-8", - "size": 707, - "text": "{\"data\":{\"id\":\"datacite.nus\",\"type\":\"repositories\",\"attributes\":{\"name\":\"National University of Singapore\",\"symbol\":\"DATACITE.NUS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mlbcsw@nus.edu.sg\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-05-30T14:30:35.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0312\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":3,\"prefixCount\":1}}" + "size": 714, + "text": "{\"data\":{\"id\":\"datacite.axiom\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Axiom Data Science\",\"symbol\":\"DATACITE.AXIOM\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"ross@axiomdatascience.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"description\",\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-19T07:09:17.000Z\",\"updated\":\"2019-06-06T13:41:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0309\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":4,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2703,8 +2703,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1432, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1454, "timings": { "blocked": -1, "connect": -1, @@ -2712,11 +2712,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1432 + "wait": 1454 } }, { - "_id": "54daae621ee7db2f9d3e5fb0a8fa0d86", + "_id": "9057c2716843429f44c5cf1cc06b12ba", "_order": 0, "cache": {}, "request": { @@ -2732,18 +2732,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 680, + "headersSize": 678, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.unibz" + "url": "https://api.test.datacite.org/repositories/datacite.ucb" }, "response": { - "bodySize": 709, + "bodySize": 738, "content": { "mimeType": "application/json; charset=utf-8", - "size": 709, - "text": "{\"data\":{\"id\":\"datacite.unibz\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University Bozen\",\"symbol\":\"DATACITE.UNIBZ\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"luigi.siciliano@unibz.it\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"unibz.it\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-04-28T06:33:26.000Z\",\"updated\":\"2018-08-26T01:31:05.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0310\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" + "size": 738, + "text": "{\"data\":{\"id\":\"datacite.ucb\",\"type\":\"repositories\",\"attributes\":{\"name\":\"University Libraries University of Colorado Boulder\",\"symbol\":\"DATACITE.UCB\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"andrew.m.johnson@colorado.edu\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2017-08-24T13:58:18.000Z\",\"updated\":\"2018-08-26T01:31:07.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0321\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2762,8 +2762,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1441, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1457, "timings": { "blocked": -1, "connect": -1, @@ -2771,11 +2771,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1441 + "wait": 1457 } }, { - "_id": "8bdfaa0185bee6f278312f5d05c04624", + "_id": "91b08a3622daa9c921540a7db2ebaffb", "_order": 0, "cache": {}, "request": { @@ -2791,18 +2791,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 679, + "headersSize": 682, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.nasa" + "url": "https://api.test.datacite.org/repositories/datacite.dataone" }, "response": { - "bodySize": 687, + "bodySize": 1452, "content": { "mimeType": "application/json; charset=utf-8", - "size": 687, - "text": "{\"data\":{\"id\":\"datacite.nasa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"NASA\",\"symbol\":\"DATACITE.NASA\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"nasadev@mindgrub.com\",\"globusUuid\":null,\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":null,\"language\":null,\"certificate\":null,\"domains\":\"*\",\"issn\":null,\"url\":null,\"salesforceId\":null,\"created\":\"2018-02-05T09:08:34.000Z\",\"updated\":\"2018-08-26T01:31:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.24411\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":667,\"prefixCount\":1}}" + "size": 1452, + "text": "{\"data\":{\"id\":\"datacite.dataone\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataONE\",\"symbol\":\"DATACITE.DATAONE\",\"re3data\":\"https://doi.org/10.17616/R3101G\",\"opendoar\":null,\"year\":2017,\"systemEmail\":\"dave.vieglais@gmail.com\",\"globusUuid\":null,\"alternateName\":\"Data Observation Network for Earth\",\"description\":\"Data Observation Network for Earth (DataONE) is the foundation of new innovative environmental science through a distributed framework and sustainable cyberinfrastructure that meets the needs of science and society for open, persistent, robust, and secure access to well-described and easily discovered Earth observational data.\\r\\nSupported by the U.S. National Science Foundation (Grant #OCI-0830944) as one of the initial DataNets, DataONE will ensure the preservation, access, use and reuse of multi-scale, multi-discipline, and multi-national science data via three primary cyberinfrastucture elements and a broad education and outreach program.\",\"clientType\":\"repository\",\"repositoryType\":[\"disciplinary\"],\"language\":[\"en\"],\"certificate\":[\"CoreTrustSeal\"],\"domains\":\"*\",\"issn\":[],\"url\":\"https://www.dataone.org/\",\"salesforceId\":null,\"created\":\"2017-07-19T10:24:01.000Z\",\"updated\":\"2019-08-02T16:00:38.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0320\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":0,\"prefixCount\":1}}" }, "cookies": [], "headers": [ @@ -2821,8 +2821,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1502, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1462, "timings": { "blocked": -1, "connect": -1, @@ -2830,7 +2830,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1502 + "wait": 1462 } }, { @@ -2880,8 +2880,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:30:34.811Z", - "time": 1513, + "startedDateTime": "2020-05-04T16:41:58.292Z", + "time": 1467, "timings": { "blocked": -1, "connect": -1, @@ -2889,7 +2889,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1513 + "wait": 1467 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-AWI-form_4043672064/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-AWI-form_4043672064/recording.har index 48a13dedd..d0710fcdf 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-AWI-form_4043672064/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-AWI-form_4043672064/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/editing repository AWI form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:23.075Z", - "time": 101, + "startedDateTime": "2020-05-04T16:42:09.622Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 111 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,7 +122,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:23.519Z", + "startedDateTime": "2020-05-04T16:42:10.143Z", "time": 123, "timings": { "blocked": -1, diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-delete-form_3476770723/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-delete-form_3476770723/recording.har index 23f91f69f..3cb699970 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-delete-form_3476770723/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-delete-form_3476770723/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/editing repository DataCite Test delete form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite930\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:40:24.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite196\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:42:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:25.704Z", - "time": 130, + "startedDateTime": "2020-05-04T16:42:12.768Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 130 + "wait": 111 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:25.907Z", - "time": 84, + "startedDateTime": "2020-05-04T16:42:13.008Z", + "time": 98, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 98 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-password-form_1950781905/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-password-form_1950781905/recording.har index e83523aba..56d1a907a 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-password-form_1950781905/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/editing-repository-DataCite-Test-password-form_1950781905/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/editing repository DataCite Test password form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite930\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:40:24.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite196\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:42:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:25.226Z", - "time": 144, + "startedDateTime": "2020-05-04T16:42:12.274Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 144 + "wait": 97 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:25.470Z", - "time": 97, + "startedDateTime": "2020-05-04T16:42:12.497Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 97 + "wait": 99 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/new-repository-form_683479559/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/new-repository-form_683479559/recording.har index 3dbe0171f..c528dfcc4 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/new-repository-form_683479559/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/new-repository-form_683479559/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/new repository form", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/providers/datacite?include=consortium%2Cconsortium-organizations" }, "response": { - "bodySize": 7126, + "bodySize": 7199, "content": { "mimeType": "application/json; charset=utf-8", - "size": 7126, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}}]}" + "size": 7199, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0},\"included\":[{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:21.557Z", - "time": 218, + "startedDateTime": "2020-05-04T16:42:08.323Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 218 + "wait": 103 } }, { @@ -99,7 +99,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 19, - "text": "{\"symbol\":\"PYLBFL\"}" + "text": "{\"symbol\":\"HXEZLD\"}" }, "cookies": [], "headers": [ @@ -118,8 +118,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:22.640Z", - "time": 145, + "startedDateTime": "2020-05-04T16:42:09.117Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -127,11 +127,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 145 + "wait": 139 } }, { - "_id": "d66ee295d0ca8965fdaa52bf9d620243", + "_id": "bcb891cd3aa8d60a36b79e5aa62309cf", "_order": 0, "cache": {}, "request": { @@ -153,17 +153,17 @@ "queryString": [ { "name": "id", - "value": "DATACITE.PYLBFL" + "value": "DATACITE.HXEZLD" } ], - "url": "https://api.test.datacite.org/repositories?id=DATACITE.PYLBFL" + "url": "https://api.test.datacite.org/repositories?id=DATACITE.HXEZLD" }, "response": { "bodySize": 135, "content": { "mimeType": "application/json; charset=utf-8", "size": 135, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?id=DATACITE.PYLBFL\"}}" + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?id=DATACITE.HXEZLD\"}}" }, "cookies": [], "headers": [ @@ -182,8 +182,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:22.832Z", - "time": 118, + "startedDateTime": "2020-05-04T16:42:09.286Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -191,7 +191,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 131 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har index 2c53ecc71..cda84e234 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/update-repository-description_3754013706/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/update repository description", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:23.773Z", - "time": 92, + "startedDateTime": "2020-05-04T16:42:10.453Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 99 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:24.144Z", - "time": 118, + "startedDateTime": "2020-05-04T16:42:11.169Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +131,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 139 } }, { - "_id": "06fd3f3fb400924f87e26aba6b3e88e2", + "_id": "e749d3647a9cd5fee13b34c492cd2b5b", "_order": 0, "cache": {}, "request": { @@ -157,7 +157,7 @@ "postData": { "mimeType": "application/vnd.api+json;charset=utf-8", "params": [], - "text": "{\"data\":{\"id\":\"datacite.test\",\"attributes\":{\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"name\":\"DataCite Test Repository\",\"alternateName\":null,\"symbol\":\"DATACITE.TEST\",\"globusUuid\":null,\"re3data\":null,\"domains\":\"*\",\"systemEmail\":\"mfenner@datacite.org\",\"salesforceId\":null,\"year\":2017,\"description\":\"datacite850\",\"language\":[],\"certificate\":[],\"serviceContact\":{},\"issn\":{\"issnl\":null,\"electronic\":null,\"print\":null},\"url\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"software\":null,\"isActive\":true,\"passwordInput\":null,\"hasPassword\":true,\"keepPassword\":true,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"type\":\"providers\",\"id\":\"datacite\"}}},\"type\":\"repositories\"}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"attributes\":{\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"name\":\"DataCite Test Repository\",\"alternateName\":null,\"symbol\":\"DATACITE.TEST\",\"globusUuid\":null,\"re3data\":null,\"domains\":\"*\",\"systemEmail\":\"mfenner@datacite.org\",\"salesforceId\":null,\"year\":2017,\"description\":\"datacite196\",\"language\":[],\"certificate\":[],\"serviceContact\":{},\"issn\":{\"issnl\":null,\"electronic\":null,\"print\":null},\"url\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"software\":null,\"isActive\":true,\"passwordInput\":null,\"hasPassword\":true,\"keepPassword\":true,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\"},\"relationships\":{\"provider\":{\"data\":{\"type\":\"providers\",\"id\":\"datacite\"}}},\"type\":\"repositories\"}}" }, "queryString": [], "url": "https://api.test.datacite.org/repositories/datacite.test" @@ -167,7 +167,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 703, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite850\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-03T14:39:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}}" + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite196\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:42:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-05-03T14:39:11.124Z", - "time": 161, + "startedDateTime": "2020-05-04T16:42:11.431Z", + "time": 211, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 161 + "wait": 211 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-dois_3205762602/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-dois_3205762602/recording.har index 3b309063d..4f6077eb4 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-dois_3205762602/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-dois_3205762602/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/visiting repository DataCite Test dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:20.393Z", - "time": 108, + "startedDateTime": "2020-05-04T16:42:06.957Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 116 } }, { @@ -179,11 +179,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 33654, + "bodySize": 38196, "content": { "mimeType": "application/json; charset=utf-8", - "size": 33654, - "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite848\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T07:40:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://foto-kirschner.de/danedane/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 05:05:35\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://www.dane.de\",\"http://foto-kirschner.de/danedane\"],\"redirectCount\":2,\"downloadLatency\":31},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T07:31:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[{\"name\":\"DataCite\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/cool-dois/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:43:56\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/55e5-t5c0\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":1193},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/shss-b648\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/shss-b648\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Computer and information sciences\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":\"de\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T21:02:36.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-18T21:05:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fqse-wb15\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fqse-wb15\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/fqse-wb15\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Trento, Giovanna\",\"nameType\":\"Personal\",\"givenName\":\"Giovanna\",\"familyName\":\"Trento\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Pier Paolo Pasolini and Pan-Meridional Italianness\"}],\"publisher\":\"Turia + Kant\",\"container\":{\"type\":\"Series\",\"title\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities\",\"volume\":\"Geographies\",\"lastPage\":\"83\",\"firstPage\":\"59\",\"identifier\":\"https://doi.org/10.25620/ci-06\",\"identifierType\":\"DOI\"},\"publicationYear\":2012,\"subjects\":[{\"subject\":\"Pasolini, Pier Paolo\"},{\"subject\":\"Italy, Southern\"},{\"subject\":\"panafricanism\"},{\"subject\":\"colonialism\"}],\"contributors\":[{\"name\":\"Di Blasi, Luca\",\"nameType\":\"Personal\",\"givenName\":\"Luca\",\"familyName\":\"Di Blasi\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-6755-6570\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Gragnolati, Manuele\",\"nameType\":\"Personal\",\"givenName\":\"Manuele\",\"familyName\":\"Gragnolati\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-8178-3443\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]},{\"name\":\"Holzhey, Christoph F. E.\",\"nameType\":\"Personal\",\"givenName\":\"Christoph F. E.\",\"familyName\":\"Holzhey\",\"contributorType\":\"Editor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1312-1878\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"inbook\",\"citeproc\":\"chapter\",\"schemaOrg\":\"Chapter\",\"resourceType\":\"Book_chapter\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-06\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"https://www.ici-berlin.org/oa/ci-06/index.html\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"978-3-85132-681-9\",\"relatedIdentifierType\":\"ISBN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-728X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2627-731X\",\"relatedIdentifierType\":\"ISSN\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-print\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.25620/ci-online\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"© by the author(s)\"},{\"rights\":\"This version is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.\",\"rightsUri\":\"http://creativecommons.org/licenses/by-sa/4.0\"}],\"descriptions\":[{\"description\":\"The Scandal of Self-Contradiction: Pasolini’s Multistable Subjectivities, Geographies, 59-83\",\"descriptionType\":\"SeriesInformation\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabrica\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-18T08:18:22.000Z\",\"registered\":null,\"published\":\"2012\",\"updated\":\"2020-04-18T08:18:22.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-15T12:39:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/ytzz-wq10\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/ytzz-wq10\",\"identifiers\":[],\"creators\":[{\"name\":\"Buys, Matthew\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"DataCite\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04wxnsj81\",\"affiliationIdentifierScheme\":\"ROR\"},{\"name\":\"ORCID\",\"schemeUri\":\"https://ror.org\",\"affiliationIdentifier\":\"https://ror.org/04fa4r544\",\"affiliationIdentifierScheme\":\"ROR\"}],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Matthew Buys\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Test title - new form\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Sociology\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"en\",\"description\":\"Test description\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationBox\":{\"eastBoundLongitude\":null,\"northBoundLatitude\":null,\"southBoundLatitude\":null,\"westBoundLongitude\":null},\"geoLocationPlace\":\"Amsterdam\",\"geoLocationPoint\":{\"pointLatitude\":null,\"pointLongitude\":null}}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-07T07:20:10.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-04-07T07:20:34.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-06T16:42:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7m2v-5757\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7m2v-5757\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/7m2v-5757\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Center For International Earth Science Information Network-CIESIN-Columbia University\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Low Elevation Coastal Zone (LECZ) Urban-Rural Population and Land Area Estimates, Version 3\"},{\"title\":\"Urban-Rural Population and Land Area Estimates, Version 3 (1990, 2000, 2015)\",\"titleType\":\"TranslatedTitle\"}],\"publisher\":\"Palisades, NY: NASA Socioeconomic Data and Applications Center (SEDAC)\",\"container\":{},\"publicationYear\":2013,\"subjects\":[{\"subject\":\"climate\"},{\"subject\":\"marine and coastal\"},{\"subject\":\"population\"},{\"subject\":\"sustainability\"}],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"tabular; map; map service\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPreviousVersionOf\",\"relatedIdentifier\":\"10.7927/yyyyy3\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T12:48:27.000Z\",\"registered\":null,\"published\":\"2013\",\"updated\":\"2020-04-06T12:49:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-04-06T07:59:51.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/yh3e-rp55\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/yh3e-rp55\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":null,\"nameIdentifiers\":[]}],\"dates\":[{\"date\":null,\"dateType\":null,\"dateInformation\":null}],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":null,\"awardNumber\":null,\"funderIdentifier\":null,\"funderIdentifierType\":\"Other\"}],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-04T06:46:13.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-04T06:46:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/n77d-nz44\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/n77d-nz44\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":null,\"relatedIdentifier\":null,\"resourceTypeGeneral\":null,\"relatedIdentifierType\":null,\"relatedMetadataScheme\":null}],\"sizes\":[\"444\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T09:31:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-30T09:31:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/kvth-tj94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/kvth-tj94\",\"identifiers\":[{\"identifier\":\"1288-90\",\"identifierType\":\"Pubmed\"}],\"creators\":[{\"name\":\"Hirsch, Mary\",\"nameType\":\"Personal\",\"givenName\":\"Mary\",\"familyName\":\"Hirsch\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-6628-8225\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"This is a new dataset\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Biochemistry\",\"valueUri\":\"jhggff\",\"schemeUri\":\"\",\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Dreyer, Britta\",\"nameType\":\"Personal\",\"givenName\":\"Britta\",\"familyName\":\"Dreyer\",\"affiliation\":[],\"contributorType\":\"DataManager\",\"nameIdentifiers\":[]},{\"name\":\"\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":\"ar\",\"types\":{\"resourceType\":\"Satellite Data\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://tib.eu\",\"schemeType\":\"iosfudsfj\",\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.1029/PA004i004p00413\",\"resourceTypeGeneral\":\"Image\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":\"Dublin Core\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"Cites\",\"relatedIdentifier\":\"asdadsads\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"EISSN\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"aesfdjäadspujgäapsjgear#jgdfaÖXMCv\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Barcelona\"},{\"geoLocationPlace\":null}],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://tib.eu\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T16:18:09.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-03-27T10:23:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":null}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-03-25T05:46:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":15,\"totalPages\":1,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":9},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":15}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":15}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":15}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2},{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":10},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":5}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":2}],\"sources\":[{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":13},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":2}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":3}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"1\",\"title\":\"1\",\"count\":2},{\"id\":\"0\",\"title\":\"0\",\"count\":1}],\"linkChecksSchemaOrgId\":2,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"featured\",\"title\":\"Featured\",\"count\":2},{\"id\":\"000 computer science\",\"title\":\"000 Computer Science\",\"count\":1},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":1},{\"id\":\"Computer and information sciences\",\"title\":\"Computer And Information Sciences\",\"count\":1},{\"id\":\"Italy, Southern\",\"title\":\"Italy, Southern\",\"count\":1},{\"id\":\"Pasolini, Pier Paolo\",\"title\":\"Pasolini, Pier Paolo\",\"count\":1},{\"id\":\"Sociology\",\"title\":\"Sociology\",\"count\":1},{\"id\":\"climate\",\"title\":\"Climate\",\"count\":1},{\"id\":\"colonialism\",\"title\":\"Colonialism\",\"count\":1},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":1},{\"id\":\"instrument\",\"title\":\"Instrument\",\"count\":1},{\"id\":\"marine and coastal\",\"title\":\"Marine And Coastal\",\"count\":1},{\"id\":\"panafricanism\",\"title\":\"Panafricanism\",\"count\":1},{\"id\":\"population\",\"title\":\"Population\",\"count\":1},{\"id\":\"rda\",\"title\":\"Rda\",\"count\":1}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\"}}" + "size": 38196, + "text": "{\"data\":[{\"id\":\"10.0330/3nym-s568\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/3nym-s568\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://datacite18\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T07:40:07.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:41:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/t6vm-0595\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/t6vm-0595\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Attribution Assurance License\",\"rightsUri\":\"http://spdx.org/licenses/AA.json\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/fhb1-ch81\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/fhb1-ch81\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.70048/rph240519\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:35.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:35.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/9fxk-aa96\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/9fxk-aa96\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://support.datacite.org/docs/doi-states\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T05:46:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8cpk-ka66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8cpk-ka66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:26.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/b4b4-wq94\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/b4b4-wq94\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"67\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:18.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8wrw-2m30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8wrw-2m30\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":null,\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":null,\"nameIdentifierScheme\":null}]}],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:15.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/10qh-3f05\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/10qh-3f05\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Amsterdam, Novoravis hotel\"}],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:10.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/k52b-bv27\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/k52b-bv27\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[{\"subject\":\"Materials engineering\",\"valueUri\":\"http://www.oecd.org/science/inno/38235147.pdf\",\"schemeUri\":\"http://www.oecd.org/science/inno\",\"subjectScheme\":\"OECD\"}],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:08.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2s25-de93\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2s25-de93\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":\"en\",\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:05.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/2jn3-tr97\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/2jn3-tr97\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/8490-9084\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/8490-9084\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:58.000Z\",\"registered\":null,\"published\":\"2020\",\"updated\":\"2020-05-04T16:39:58.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/7z2c-8d43\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/7z2c-8d43\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:56.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/jnwe-my69\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/jnwe-my69\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"The title\",\"titleType\":null}],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:53.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/01bd-5804\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/01bd-5804\",\"identifiers\":[],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:39:50.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:39:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/zac6-rw11\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/zac6-rw11\",\"identifiers\":[],\"creators\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Kristian Garza\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"title\",\"titleType\":null}],\"publisher\":\"AIDA\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"sd\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"right\",\"rightsUri\":null}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"Donald D. Hammill Foundation\",\"awardNumber\":null,\"funderIdentifier\":\"http://dx.doi.org/10.13039/100002962\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://scholar.uc.edu/show/zk51vj32p\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://scholar.uc.edu/concern/generic_works/zk51vj32p?locale=en\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 05:02:46\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html; charset=utf-8\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://scholar.uc.edu/show/zk51vj32p\"],\"redirectCount\":1,\"downloadLatency\":1207},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T16:42:52.000Z\",\"registered\":\"2020-04-06T16:42:53.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-04T10:02:03.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/9csv-qn73\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/9csv-qn73\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0330/9csv-qn73\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Herzog, Sven\",\"nameType\":\"Personal\",\"givenName\":\"Sven\",\"familyName\":\"Herzog\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Müller, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Müller\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Journal of Forest and Landscape Research\",\"titleType\":null}],\"publisher\":\"Technische Universität Dresden, Faculty of Environmental Sciences\",\"container\":{},\"publicationYear\":2014,\"subjects\":[],\"contributors\":[{\"name\":\"SLUB Dresden\",\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://foto-kirschner.de/danedane/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:32:37\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://www.dane.de\",\"http://foto-kirschner.de/danedane\"],\"redirectCount\":2,\"downloadLatency\":32},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-15T12:39:02.000Z\",\"registered\":\"2020-04-15T12:39:10.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T09:02:21.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/tdm9-qa23\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/tdm9-qa23\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/tdm9-qa23\",\"identifierType\":\"DOI\"},{\"identifier\":\"\\nhttps://schema.datacite.org/meta/kernel-4.3/example/datacite-example-full-v4.3.xml\\n\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Miller, Elizabeth\",\"nameType\":\"Personal\",\"givenName\":\"Elizabeth\",\"familyName\":\"Miller\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0001-5000-0007\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ontario Ministry Of Natural Resources And Forestry\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Université Du Québec à Montréal\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"en-US\",\"title\":\"Full DataCite XML Example\",\"titleType\":null},{\"lang\":\"en-US\",\"title\":\"Demonstration of DataCite Properties.\",\"titleType\":\"Subtitle\"}],\"publisher\":\"National Research Council of Canada\",\"container\":{},\"publicationYear\":2014,\"subjects\":[{\"subject\":\"000 computer science\",\"valueUri\":null,\"schemeUri\":\"http://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[{\"name\":\"Starr, Joan\",\"nameType\":\"Personal\",\"givenName\":\"Joan\",\"familyName\":\"Starr\",\"affiliation\":[],\"contributorType\":\"ProjectLeader\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-7285-027X\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"International Joint Commission\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Sponsor\",\"nameIdentifiers\":[]},{\"name\":\"United States Geological Survey\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2017-09-13\",\"dateType\":\"Updated\",\"dateInformation\":\"Updated with 4.3 properties\"},{\"date\":\"2014\",\"dateType\":\"Issued\"}],\"language\":\"en-US\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"XML\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"schemeUri\":\"https://github.com/citation-style-language/schema/raw/master/csl-data.json\",\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"https://data.datacite.org/application/citeproc+json/10.5072/example-full\",\"resourceTypeGeneral\":\"Model\",\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":\"citeproc+json\"},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsReviewedBy\",\"relatedIdentifier\":\"arXiv:0706.0001\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"arXiv\",\"relatedMetadataScheme\":null}],\"sizes\":[\"4 kB\"],\"formats\":[\"application/xml\"],\"version\":\"4.3\",\"rightsList\":[{\"lang\":\"en-US\",\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"lang\":\"en-US\",\"description\":\"XML example of all DataCite Metadata Schema v4.3 properties.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Atlantic Ocean\"}],\"fundingReferences\":[{\"awardTitle\":\"Full DataCite XML Example\",\"funderName\":\"National Science Foundation\",\"awardNumber\":\"CBET-106\",\"funderIdentifier\":\"https://doi.org/10.13039/100000001\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://foto-kirschner.de/danedane/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 03:30:24\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://www.dane.de\",\"http://foto-kirschner.de/danedane\"],\"redirectCount\":2,\"downloadLatency\":30},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T15:27:14.000Z\",\"registered\":\"2020-03-26T14:43:18.000Z\",\"published\":\"2014\",\"updated\":\"2020-05-04T06:31:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/bxc1-9b07\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/bxc1-9b07\",\"identifiers\":[],\"creators\":[{\"name\":\"fgd, gfd\",\"nameType\":\"Personal\",\"givenName\":\"gfd\",\"familyName\":\"fgd\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"fgd\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":1889,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.dane.de\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://foto-kirschner.de/danedane/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 02:13:11\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"https://www.dane.de\",\"http://foto-kirschner.de/danedane\"],\"redirectCount\":2,\"downloadLatency\":30},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-06T07:59:51.000Z\",\"registered\":\"2020-04-06T07:59:51.000Z\",\"published\":\"1889\",\"updated\":\"2020-05-04T03:32:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/2pwf-ry88\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"identifiers\":[],\"creators\":[{\"name\":null,\"nameType\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-03T14:16:01.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-03T14:16:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/cool-dois/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-15 05:32:45\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/55e5-t5c0\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":399},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.0330/pxjp-zj03\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/pxjp-zj03\",\"identifiers\":[],\"creators\":[{\"name\":\"\",\"nameType\":\"Personal\",\"givenName\":null,\"familyName\":null,\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-1825-0097\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-23T19:30:38.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-04-23T19:30:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":46,\"totalPages\":2,\"page\":1,\"states\":[{\"id\":\"draft\",\"title\":\"Draft\",\"count\":40},{\"id\":\"findable\",\"title\":\"Findable\",\"count\":6}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":6},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":46}],\"published\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":5},{\"id\":\"2016\",\"title\":\"2016\",\"count\":2},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"1889\",\"title\":\"1889\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":6}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":46}],\"clients\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":46}],\"affiliations\":[{\"id\":\"ror.org/04fa4r544\",\"title\":\"ORCID\",\"count\":1},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.0330\",\"title\":\"10.0330\",\"count\":39},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":7}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":10}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":6}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=datacite.test&created=&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=datacite.test&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -202,8 +202,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:20.521Z", - "time": 197, + "startedDateTime": "2020-05-04T16:42:07.082Z", + "time": 203, "timings": { "blocked": -1, "connect": -1, @@ -211,7 +211,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 197 + "wait": 203 } }, { @@ -238,11 +238,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -261,8 +261,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:21.217Z", - "time": 117, + "startedDateTime": "2020-05-04T16:42:08.038Z", + "time": 121, "timings": { "blocked": -1, "connect": -1, @@ -270,7 +270,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 117 + "wait": 121 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-info_3093299103/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-info_3093299103/recording.har index 47200383b..a67d49438 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-info_3093299103/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-info_3093299103/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/visiting repository DataCite Test info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.076Z", - "time": 121, + "startedDateTime": "2020-05-04T16:42:05.601Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -72,12 +72,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 91 } }, { - "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", - "_order": 1, + "_id": "cfe25cad1ccd1aac9f8c7f37cdde8660", + "_order": 0, "cache": {}, "request": { "bodySize": 0, @@ -85,30 +85,25 @@ "headers": [ { "name": "accept", - "value": "application/vnd.api+json" + "value": "application/json" }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 696, + "headersSize": 677, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "include", - "value": "provider" - } - ], - "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" + "queryString": [], + "url": "https://api.test.datacite.org/repositories/datacite.test/stats" }, "response": { - "bodySize": 6086, + "bodySize": 321, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 321, + "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":46}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":6},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" }, "cookies": [], "headers": [ @@ -127,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.272Z", - "time": 114, + "startedDateTime": "2020-05-04T16:42:05.971Z", + "time": 112, "timings": { "blocked": -1, "connect": -1, @@ -136,12 +131,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 112 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", - "_order": 0, + "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -156,18 +151,23 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 665, + "headersSize": 696, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "queryString": [ + { + "name": "include", + "value": "provider" + } + ], + "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 1782, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.274Z", - "time": 92, + "startedDateTime": "2020-05-04T16:42:05.971Z", + "time": 124, "timings": { "blocked": -1, "connect": -1, @@ -195,11 +195,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 124 } }, { - "_id": "cfe25cad1ccd1aac9f8c7f37cdde8660", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -208,25 +208,25 @@ "headers": [ { "name": "accept", - "value": "application/json" + "value": "application/vnd.api+json" }, { "name": "content-type", "value": "text/plain;charset=utf-8" } ], - "headersSize": 677, + "headersSize": 665, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.test/stats" + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 321, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 321, - "text": "{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":15}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":4},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":2},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":2},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":1},{\"id\":\"software\",\"title\":\"Software\",\"count\":1}]}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.274Z", - "time": 131, + "startedDateTime": "2020-05-04T16:42:05.971Z", + "time": 143, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 131 + "wait": 143 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har index 82b36f864..246f89770 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test-prefixes_3729007799/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/visiting repository DataCite Test prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.565Z", - "time": 93, + "startedDateTime": "2020-05-04T16:42:06.268Z", + "time": 106, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 93 + "wait": 106 } }, { - "_id": "e2831a55060530a68b1087aa3e2cd861", + "_id": "7e8a6ac4a451e9d62cb5d00ea0cf9229", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,50 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 679, + "headersSize": 782, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/repositories/datacite.test" + "queryString": [ + { + "name": "client-id", + "value": "" + }, + { + "name": "page", + "value": { + "number": "1", + "size": "25" + } + }, + { + "name": "provider-id", + "value": "" + }, + { + "name": "query", + "value": "" + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "size", + "value": "25" + }, + { + "name": "year", + "value": "" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=" }, "response": { - "bodySize": 742, + "bodySize": 1360, "content": { "mimeType": "application/json; charset=utf-8", - "size": 742, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2}}" + "size": 1360, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" }, "cookies": [], "headers": [ @@ -122,8 +154,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.688Z", - "time": 190, + "startedDateTime": "2020-05-04T16:42:06.391Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +163,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 190 + "wait": 94 } }, { - "_id": "7e8a6ac4a451e9d62cb5d00ea0cf9229", + "_id": "e2831a55060530a68b1087aa3e2cd861", "_order": 0, "cache": {}, "request": { @@ -151,50 +183,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 782, + "headersSize": 679, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "client-id", - "value": "" - }, - { - "name": "page", - "value": { - "number": "1", - "size": "25" - } - }, - { - "name": "provider-id", - "value": "" - }, - { - "name": "query", - "value": "" - }, - { - "name": "repository-id", - "value": "datacite.test" - }, - { - "name": "size", - "value": "25" - }, - { - "name": "year", - "value": "" - } - ], - "url": "https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=" + "queryString": [], + "url": "https://api.test.datacite.org/repositories/datacite.test" }, "response": { - "bodySize": 1473, + "bodySize": 742, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1473, - "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":2}],\"repositories\":[{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?client-id=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=datacite.test&size=25&year=\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&repository_id=datacite.test&year=\"}}" + "size": 742, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2}}" }, "cookies": [], "headers": [ @@ -213,8 +213,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.688Z", - "time": 217, + "startedDateTime": "2020-05-04T16:42:06.391Z", + "time": 258, "timings": { "blocked": -1, "connect": -1, @@ -222,11 +222,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 217 + "wait": 258 } }, { - "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_id": "9c69df4d8d2a08d32bcaaa32d3811630", "_order": 0, "cache": {}, "request": { @@ -242,18 +242,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 665, + "headersSize": 670, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/providers/dc" + "url": "https://api.test.datacite.org/prefixes/10.80225" }, "response": { - "bodySize": 1782, + "bodySize": 459, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 459, + "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" }, "cookies": [], "headers": [ @@ -272,8 +272,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.993Z", - "time": 91, + "startedDateTime": "2020-05-04T16:42:06.620Z", + "time": 106, "timings": { "blocked": -1, "connect": -1, @@ -281,11 +281,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 91 + "wait": 106 } }, { - "_id": "9c69df4d8d2a08d32bcaaa32d3811630", + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", "_order": 0, "cache": {}, "request": { @@ -301,18 +301,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 670, + "headersSize": 665, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://api.test.datacite.org/prefixes/10.80225" + "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 459, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 459, - "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -331,8 +331,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.993Z", - "time": 135, + "startedDateTime": "2020-05-04T16:42:06.620Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -340,7 +340,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 135 + "wait": 113 } }, { @@ -390,8 +390,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:19.993Z", - "time": 211, + "startedDateTime": "2020-05-04T16:42:06.620Z", + "time": 122, "timings": { "blocked": -1, "connect": -1, @@ -399,7 +399,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 211 + "wait": 122 } } ], diff --git a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test_2005196089/recording.har b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test_2005196089/recording.har index 66f84ab45..9f4e7c92c 100644 --- a/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test_2005196089/recording.har +++ b/recordings/Acceptance-staff_admin-repository_4125372844/visiting-repository-DataCite-Test_2005196089/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | repository/visiting repository DataCite Test", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" }, "response": { - "bodySize": 6086, + "bodySize": 6126, "content": { "mimeType": "application/json; charset=utf-8", - "size": 6086, - "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite842\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:18:43.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":15,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + "size": 6126, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"globusUuid\":null,\"alternateName\":null,\"description\":\"datacite112\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"salesforceId\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:33:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":46,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":null,\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:18.580Z", - "time": 168, + "startedDateTime": "2020-05-04T16:42:05.056Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 168 + "wait": 111 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1782, + "bodySize": 1815, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1782, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite858\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1815, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"globusUuid\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"twitterHandle\":\"@datacite961\",\"billingInformation\":{\"city\":\"\"},\"rorId\":\"https://ror.org/04wxnsj81\",\"salesforceId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:18.901Z", - "time": 89, + "startedDateTime": "2020-05-04T16:42:05.337Z", + "time": 133, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 89 + "wait": 133 } } ], diff --git a/recordings/Acceptance-staff_admin-user_2341217883/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-staff_admin-user_2341217883/visiting-specific-user_253064087/recording.har index e717c4bce..3c2378682 100644 --- a/recordings/Acceptance-staff_admin-user_2341217883/visiting-specific-user_253064087/recording.har +++ b/recordings/Acceptance-staff_admin-user_2341217883/visiting-specific-user_253064087/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | user/visiting specific user", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -39,7 +39,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 1290, - "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" + "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\"},\"relationships\":{}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" }, "cookies": [], "headers": [ @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:26.536Z", - "time": 193, + "startedDateTime": "2020-05-04T16:42:13.795Z", + "time": 132, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 193 + "wait": 132 } }, { @@ -103,11 +103,11 @@ "url": "https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405" }, "response": { - "bodySize": 76203, + "bodySize": 75238, "content": { "mimeType": "application/json; charset=utf-8", - "size": 76203, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/cool-dois/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:51:58\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/55e5-t5c0\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":233},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/cool-dois/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 04:43:56\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/55e5-t5c0\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":1193},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-05 03:36:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":24},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-05 02:31:42\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00359\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00359\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00359\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Ffff\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"ssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Dddd\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939140000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-05 01:43:34\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-29T10:41:17.000Z\",\"registered\":\"2019-04-29T10:41:18.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T01:31:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00365\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00365\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00365\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-04 05:12:54\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T06:21:10.000Z\",\"registered\":\"2020-04-01T06:21:11.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T06:32:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00362\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00362\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00362\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite44\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":9,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-04 03:52:41\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-07T08:11:09.000Z\",\"registered\":\"2019-05-07T08:11:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T04:31:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"pending teeeeeeeee\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Preprint\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-04 02:30:13\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-20T12:43:30.000Z\",\"registered\":\"2019-02-20T12:43:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T02:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://renner.name/norbert\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-03 06:30:21\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0065\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0065\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0065\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dfd\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-10/\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-03 05:23:15\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T10:29:53.000Z\",\"registered\":\"2019-01-24T10:29:53.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T05:32:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.004\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.004\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.004\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dbg is down!!!!!!!!!!!!!!!!\"},{\"title\":\"Zikoukim\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"Musical Score\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Karamela\"},{\"subject\":\"Music Composition\"},{\"subject\":\"Music Education\"},{\"subject\":\"Musicology\"}],\"contributors\":[{\"name\":\"Dori, Danit Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Danit Sweet\",\"familyName\":\"Dori\",\"affiliation\":[\"Main Campus, Harvard University (Cambridge)\"],\"contributorType\":\"DataCurator\"},{\"name\":\"Jerusalem College Of Technology (Jerusalem)\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-02-14/2020\",\"dateType\":\"Collected\"},{\"date\":\"2020/2024\",\"dateType\":\"Created\"},{\"date\":\"2019-02-14\",\"dateType\":\"Updated\"},{\"date\":\"2019-05/2020\",\"dateType\":\"Valid\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"he\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.1007/s10841-006-9063-4\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"jpg\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Peretz was born and raised in Tiberias. His father was of Moroccan Jewish origin and his mother was of Iraqi Jewish origin. Peretz started singing as a poet in a synagogue in Tiberias at the age of 13 and began to compose songs. At the age of 18 Peretz was inducted into the Israel Defense Forces for obligatory military service. During his service, he performed \\\"שיר המעלות‬\\\", during Yom Hazikaron (the Israeli Memorial Day) ceremonies held at his base that received positive feedback leading to him serving in a military music band. In 2002, he started writing songs while in the Army. After release from the Army, he released his first album in 2005 entitled Mabit El Hamromim (מביט אל המרומים‬) that saw sale of over 10,000 copies in Israel\",\"descriptionType\":\"Methods\"},{\"description\":\"2017: Bucher Chadash (בחור חדש) (meaning New Guy)\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"Moshe Peretz (Hebrew: משה פרץ‬; born 10 May 1983) is an Israeli \\\"Mizrahi\\\" pop singer-songwriter and composer. He is also currently serving as a judge for the first season of The X Factor Israel.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Tiberias, Israel\"},{\"geoLocationPoint\":{\"pointLatitude\":\"10.0\",\"pointLongitude\":\"95.0\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"55.0\",\"northBoundLatitude\":\"9.0\",\"southBoundLatitude\":\"21.0\",\"westBoundLongitude\":\"95.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Go Music\",\"funderName\":\"Hadassah Medical Center (Jerusalem)\",\"awardNumber\":\"Music\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-03 04:34:56\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-07T06:52:08.000Z\",\"registered\":\"2019-02-07T06:52:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00370\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00370\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00370\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"sasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-06-28\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9942040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9942040700521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-03 03:00:54\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-04T05:25:24.000Z\",\"registered\":\"2019-06-04T05:25:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T02:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-03 02:29:44\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/4k3m-nyvg\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":95},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0057\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0057\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0057\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"sasasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933041400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439950000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-03 02:07:20\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-23T12:59:24.000Z\",\"registered\":\"2019-01-23T12:59:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-21T01:01:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://kuhnschmeler.info/carmelia\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-02 05:53:29\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://labadie.net/ramonita\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-02 05:17:50\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":45},\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9933541500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-31 05:22:21\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-18T02:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123h\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123h\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Vanity Fair\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://beahan.name/domenic.treutel\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://beahan.name/domenic.treutel\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-31 04:36:27\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":335,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-31T21:41:43.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-18T01:01:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00356\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00356\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00356\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"tytytyty hjhjh\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018-08-24\",\"dateType\":\"Accepted\"},{\"date\":\"2017-04-01\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"},{\"rights\":\"aaaaaab jm jjjjjjjjjjjj opppppppppp\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9938841000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-31 02:32:16\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T10:54:22.000Z\",\"registered\":\"2019-04-18T10:54:23.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-17T22:00:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3030-53-3821\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3030-53-3821\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Precious Bane\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://schillermohr.com/theda_marks\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://schillermohr.com/theda_marks\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-31 02:28:20\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T21:25:18.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T21:32:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00368\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00368\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00368\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test4545455\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9940741400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9940741400521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-31 01:46:00\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-22T11:12:13.000Z\",\"registered\":\"2019-05-22T11:12:13.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-17T20:31:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"},{\"nameIdentifier\":\"WWW\",\"nameIdentifierScheme\":\"Wikidata\"}]}],\"titles\":[{\"title\":\"my doi test sand cont\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Adam, Omer\",\"nameType\":\"Personal\",\"givenName\":\"Omer\",\"familyName\":\"Adam\",\"contributorType\":\"Other\",\"nameIdentifiers\":[{\"nameIdentifier\":\"llll\",\"nameIdentifierScheme\":\"Library of Congress Name Authority File Number\"},{\"nameIdentifier\":\"VVV\",\"nameIdentifierScheme\":\"VIAF\"},{\"nameIdentifier\":\"pppp\",\"nameIdentifierScheme\":\"Pubmed author ID\"},{\"nameIdentifier\":\"ww\",\"nameIdentifierScheme\":\"Wikidata\"},{\"nameIdentifier\":\"pp\",\"nameIdentifierScheme\":\"Pivot ID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2016-05-04\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-30 06:06:06\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T20:57:27.000Z\",\"registered\":\"2019-04-18T20:57:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:31:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-30 05:42:13\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:01:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://lowemiller.net/phil\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-30 05:15:29\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T01:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-03-30 03:23:00\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-16T22:03:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":95,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":83},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":35},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":67},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":42},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":60},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":70},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":70},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":4}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":70},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":5}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":70},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":12},{\"id\":\"test\",\"title\":\"Test\",\"count\":12},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":70},{\"id\":\"1\",\"title\":\"1\",\"count\":5}],\"linkChecksSchemaOrgId\":5,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":12},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":12},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":12},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":12},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":12},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":12},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":12},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":5},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":4},{\"id\":\"Karamela\",\"title\":\"Karamela\",\"count\":3},{\"id\":\"Music Composition\",\"title\":\"Music Composition\",\"count\":3},{\"id\":\"Music Education\",\"title\":\"Music Education\",\"count\":3},{\"id\":\"Musicology\",\"title\":\"Musicology\",\"count\":3},{\"id\":\"Architecture\",\"title\":\"Architecture\",\"count\":1},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":1}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" + "size": 75238, + "text": "{\"data\":[{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-16 04:12:16\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/tdk2-2g94\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":403},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-16 03:01:51\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T05:31:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-16 02:23:11\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://blog.datacite.org/cool-dois/\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-15 05:32:45\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":\"https://doi.org/10.5438/55e5-t5c0\",\"dcIdentifier\":null,\"hasSchemaOrg\":true,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":399},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0034\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0034\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0034\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"test datacite sssssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[\"4568.5 kb\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-SA V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc-sa/4.0\"}],\"descriptions\":[{\"description\":\"my abstract description!\",\"descriptionType\":\"Abstract\"},{\"description\":\"cool methods\",\"descriptionType\":\"Methods\"},{\"description\":\"cool methods secont one\",\"descriptionType\":\"Methods\"},{\"description\":\"cool techinal info\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"additional or other???\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-15 05:40:11\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-15T09:11:24.000Z\",\"registered\":\"2020-04-06T08:46:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-03T09:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"gggg, aaaa\",\"nameType\":\"Personal\",\"givenName\":\"aaaa\",\"familyName\":\"gggg\",\"affiliation\":[]},{\"name\":\"My Group Author\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test group author\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"My Group 2\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-15 05:22:45\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-14T03:45:44.000Z\",\"registered\":\"2019-08-14T03:45:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://www.legros.com/margery\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-15 04:57:47\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[\"http://legros.com/margery\"],\"redirectCount\":1,\"downloadLatency\":166},\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://abernathy.io/salina\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-15 04:35:20\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://blockpfannerstill.co/shalonda\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-15 04:09:50\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0066\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0066\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0066\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"בהבסה\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08/0002-12\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"png\",\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-15 03:45:54\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T11:57:38.000Z\",\"registered\":\"2019-01-24T11:57:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T05:31:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cool_conf.0037\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cool_conf.0037\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cool_conf.0037\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearcherID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"ERA\"}]}],\"titles\":[{\"title\":\"Test url\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Conference abstract\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-15 03:12:55\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-16T16:41:22.000Z\",\"registered\":\"2019-01-16T16:53:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T04:31:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00357\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00357\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00357\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Lea Sweet\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Alzheimer's research & therapy\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-14 04:53:08\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-13T09:00:16.000Z\",\"registered\":\"2020-02-13T09:00:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-02T10:02:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://mohrschuster.co/jimmy\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-14 03:37:25\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://lowemiller.net/phil\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-14 02:50:32\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0090\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0090\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0090\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"wqwqwqw\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Model\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-13 05:09:47\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-17T09:37:45.000Z\",\"registered\":\"2019-02-17T09:37:47.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T13:01:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/from_sand_datacite.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/from_sand_datacite.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/from_sand_datacite.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Bayandina, O. S\",\"nameType\":\"Personal\",\"givenName\":\"O. S\",\"familyName\":\"Bayandina\",\"affiliation\":[]},{\"name\":\"Alakoz, A. V\",\"nameType\":\"Personal\",\"givenName\":\"A. V\",\"familyName\":\"Alakoz\",\"affiliation\":[]},{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Val’tts, I. E\",\"nameType\":\"Personal\",\"givenName\":\"I. E\",\"familyName\":\"Val’tts\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Magnetic fields in methanol maser condensations based on data for related regions. Seven sources: Observational parameters\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-13 04:47:00\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-17T05:45:01.000Z\",\"registered\":\"2020-02-17T05:45:02.000Z\",\"published\":\"2013\",\"updated\":\"2020-05-01T12:02:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/10377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/10377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/10377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite subject\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-13 04:00:06\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-20T10:22:10.000Z\",\"registered\":\"2019-11-20T10:22:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T10:02:47.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0033\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0033\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0033\",\"identifierType\":\"DOI\"},{\"identifier\":\"1111-2222\",\"identifierType\":\"ISSN\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"TEST for Job - data cite - was existing333333333333\"}],\"publisher\":\"fsgs\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-12 03:48:01\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-14T10:33:23.000Z\",\"registered\":\"2019-02-13T11:54:32.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-30T10:31:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/06377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/06377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/06377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.5555/test.11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-11 03:46:33\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-19T12:32:09.000Z\",\"registered\":\"2019-11-19T12:32:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-29T09:00:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-11 02:50:43\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-29T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-10 06:24:50\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T13:34:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://renner.name/norbert\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-10 06:22:48\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T13:34:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0064\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0064\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0064\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"geo\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"fgsfgsg\\nsgsgs\"},{\"geoLocationPlace\":\"gsgsg\\nsgsgsg\"}],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"error\":\"DNS lookup failure\",\"status\":null,\"checked\":\"2020-04-10 04:00:38\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T08:39:07.000Z\",\"registered\":\"2019-01-24T08:39:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-28T09:01:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cw.00040\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cw.00040\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cw.00040\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Manevitz, Larry\",\"nameType\":\"Personal\",\"givenName\":\"Larry\",\"familyName\":\"Manevitz\",\"affiliation\":[]},{\"name\":\"Abbas, Emily Funny\",\"nameType\":\"Personal\",\"givenName\":\"Emily Funny\",\"familyName\":\"Abbas\",\"affiliation\":[\"University of Iowa Libraries, Nursing\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Dance1\"}],\"publisher\":\"University of Iowa Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"test type\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Closed\"},{\"rights\":\"Test copyright\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"error\":\"Timeout\",\"status\":null,\"checked\":\"2020-04-10 02:44:03\",\"bodyHasPid\":null,\"citationDoi\":null,\"contentType\":\"\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":0},\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-23T16:16:43.000Z\",\"registered\":\"2019-05-23T16:16:44.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"landingPage\":{\"url\":\"http://labadie.net/ramonita\",\"error\":\"\",\"status\":200,\"checked\":\"2020-04-10 02:16:29\",\"bodyHasPid\":false,\"citationDoi\":null,\"contentType\":\"text/html\",\"schemaOrgId\":null,\"dcIdentifier\":null,\"hasSchemaOrg\":false,\"redirectUrls\":[],\"redirectCount\":0,\"downloadLatency\":44},\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T05:32:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":96,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":84},{\"id\":\"draft\",\"title\":\"Draft\",\"count\":12}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":36},{\"id\":\"software\",\"title\":\"Software\",\"count\":29},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":20},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":1},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":1},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"image\",\"title\":\"Image\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1},{\"id\":\"service\",\"title\":\"Service\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":26},{\"id\":\"2019\",\"title\":\"2019\",\"count\":68},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":23},{\"id\":\"2019\",\"title\":\"2019\",\"count\":43},{\"id\":\"2017\",\"title\":\"2017\",\"count\":3},{\"id\":\"2016\",\"title\":\"2016\",\"count\":7},{\"id\":\"2014\",\"title\":\"2014\",\"count\":2},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":71},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":20},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":4},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":1}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":71},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":18},{\"id\":\"ethz.ubasojs\",\"title\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"count\":4},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2},{\"id\":\"delft.data4tu\",\"title\":\"4TU.Centre for Research Data\",\"count\":1}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":3}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":71},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":5},{\"id\":\"10.12685\",\"title\":\"10.12685\",\"count\":4},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.4121\",\"title\":\"10.4121\",\"count\":1},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":38}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" }, "cookies": [], "headers": [ @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:26.536Z", - "time": 317, + "startedDateTime": "2020-05-04T16:42:13.795Z", + "time": 225, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 317 + "wait": 225 } } ], diff --git a/recordings/Acceptance-staff_admin-user_2341217883/visiting-users_37556140/recording.har b/recordings/Acceptance-staff_admin-user_2341217883/visiting-users_37556140/recording.har index c6a7b0ccf..d3fd903d4 100644 --- a/recordings/Acceptance-staff_admin-user_2341217883/visiting-users_37556140/recording.har +++ b/recordings/Acceptance-staff_admin-user_2341217883/visiting-users_37556140/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | staff_admin | user/visiting users", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,7 +67,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 8217, - "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":66890,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" + "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":67002,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" }, "cookies": [], "headers": [ @@ -86,8 +86,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:26.072Z", - "time": 181, + "startedDateTime": "2020-05-04T16:42:13.207Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -95,7 +95,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 181 + "wait": 113 } } ], diff --git a/recordings/Acceptance-user-admin_1577315666/is-logged-in_3542225560/recording.har b/recordings/Acceptance-user-admin_1577315666/is-logged-in_3542225560/recording.har index 6bd669b0d..44046b253 100644 --- a/recordings/Acceptance-user-admin_1577315666/is-logged-in_3542225560/recording.har +++ b/recordings/Acceptance-user-admin_1577315666/is-logged-in_3542225560/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | admin/is logged in", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,8 +67,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:27.116Z", - "time": 173, + "startedDateTime": "2020-05-04T16:42:14.242Z", + "time": 150, "timings": { "blocked": -1, "connect": -1, @@ -76,7 +76,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 173 + "wait": 150 } }, { @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:27.116Z", - "time": 193, + "startedDateTime": "2020-05-04T16:42:14.242Z", + "time": 172, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 193 + "wait": 172 } } ], diff --git a/recordings/Acceptance-user-admin_1577315666/visiting-homepage_882376104/recording.har b/recordings/Acceptance-user-admin_1577315666/visiting-homepage_882376104/recording.har index dda8feb71..3447263d0 100644 --- a/recordings/Acceptance-user-admin_1577315666/visiting-homepage_882376104/recording.har +++ b/recordings/Acceptance-user-admin_1577315666/visiting-homepage_882376104/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | admin/visiting homepage", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -12,7 +12,7 @@ }, "entries": [ { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -28,18 +28,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -58,8 +67,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:27.546Z", - "time": 98, + "startedDateTime": "2020-05-04T16:42:14.611Z", + "time": 91, "timings": { "blocked": -1, "connect": -1, @@ -67,11 +76,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 91 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -87,27 +96,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -126,7 +126,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:27.546Z", + "startedDateTime": "2020-05-04T16:42:14.611Z", "time": 100, "timings": { "blocked": -1, diff --git a/recordings/Acceptance-user-admin_1577315666/visiting-info_3527359880/recording.har b/recordings/Acceptance-user-admin_1577315666/visiting-info_3527359880/recording.har index 0bf8e9bfc..b03deee10 100644 --- a/recordings/Acceptance-user-admin_1577315666/visiting-info_3527359880/recording.har +++ b/recordings/Acceptance-user-admin_1577315666/visiting-info_3527359880/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | admin/visiting info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,8 +67,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:27.811Z", - "time": 132, + "startedDateTime": "2020-05-04T16:42:14.892Z", + "time": 107, "timings": { "blocked": -1, "connect": -1, @@ -76,7 +76,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 132 + "wait": 107 } }, { @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:27.811Z", - "time": 136, + "startedDateTime": "2020-05-04T16:42:14.892Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 136 + "wait": 115 } } ], diff --git a/recordings/Acceptance-user-admin_1577315666/visiting-prefixes_435827572/recording.har b/recordings/Acceptance-user-admin_1577315666/visiting-prefixes_435827572/recording.har index 4f3b134ca..dedcc75c7 100644 --- a/recordings/Acceptance-user-admin_1577315666/visiting-prefixes_435827572/recording.har +++ b/recordings/Acceptance-user-admin_1577315666/visiting-prefixes_435827572/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | admin/visiting prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -75,11 +75,11 @@ "url": "https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=" }, "response": { - "bodySize": 30811, + "bodySize": 28695, "content": { "mimeType": "application/json; charset=utf-8", - "size": 30811, - "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1978},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":289},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":175}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":300},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":283},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":165},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":158},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":131},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":129},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":120},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":93},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":64},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":55},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":54},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":54},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":53},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":51},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":38}],\"clients\":[{\"id\":\"cdl.ual\",\"title\":\"University of Alberta Libraries\",\"count\":13},{\"id\":\"tib.kisti\",\"title\":\"Korea Institute of Science and Technology Information\",\"count\":9},{\"id\":\"bl.imperial\",\"title\":\"Imperial College London\",\"count\":6},{\"id\":\"cdl.ucsd\",\"title\":\"UCSD\",\"count\":5},{\"id\":\"inist.ifremer\",\"title\":\"Institut Français de Recherche pour l'Exploitation de la Mer\",\"count\":5},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":4},{\"id\":\"ands.centre-8\",\"title\":\"CSIRO\",\"count\":3},{\"id\":\"ands.centre14\",\"title\":\"Australian National Data Service\",\"count\":3},{\"id\":\"bibtag.test\",\"title\":\"Workshop Test Account\",\"count\":3},{\"id\":\"bl.lincoln\",\"title\":\"University of Lincoln\",\"count\":3},{\"id\":\"bl.old-api\",\"title\":\"BL's DOI service prototype\",\"count\":3},{\"id\":\"dk.dc\",\"title\":\"DTIC Test Datacenter\",\"count\":3},{\"id\":\"nrct.db1\",\"title\":\"NRCT Data Center\",\"count\":3},{\"id\":\"purdue.ezid\",\"title\":\"PURDUE EZID\",\"count\":3},{\"id\":\"tib.mpdl\",\"title\":\"Max Planck Digital Library\",\"count\":3}]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" + "size": 28695, + "text": "{\"data\":[{\"id\":\"10.0001\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0001\",\"createdAt\":\"2013-02-28T10:46:47.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0460fb2c-42a9-43e3-9111-033763bf31a8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"82f431f9-702d-4397-b1f4-1a09b88bae32\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.00012\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.00012\",\"createdAt\":\"2014-09-04T12:12:53.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.uu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"delft\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0efef0ae-d0bc-4f6d-9f64-003ad0e06ff8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9dcde092-607a-4b5e-963d-1a65c49fff1d\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0002\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0002\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.lj-red\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"faf13f3c-18e1-49e7-9889-c0521c9042d3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5005bbb1-7a83-48a5-9e27-f3f646901a8e\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0003\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0003\",\"createdAt\":\"2013-02-28T10:46:48.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"c9fa7fe9-95e8-4d10-a8ad-3db17ee75af3\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"18665457-bfc8-4fea-88d0-32e0dd4e6a6f\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0042\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0042\",\"createdAt\":\"2012-12-12T03:53:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hebis\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"66592705-f09c-4fc2-abfd-02f34f614895\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"a6ec202a-1e7a-48bd-9151-6dde7d52fc35\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0123\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0123\",\"createdAt\":\"2012-11-20T12:05:43.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af3328a3-4caa-44e7-a86b-d984c56c49cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"0cf45161-61cc-4b4f-934f-6372b8634fa8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.01234\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.01234\",\"createdAt\":\"2012-12-04T10:09:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zimtest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"f537b1af-2dae-443e-9566-7d07e8bc79c2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c553dc82-6c34-4ef4-9850-431e771e91e5\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0124\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0124\",\"createdAt\":\"2012-11-20T12:05:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.avedas\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"gesis\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"765bcc31-c526-4b7b-9907-92f881b9bf51\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"1759c860-c226-43af-96e3-eb7f6f923ca8\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0125\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0125\",\"createdAt\":\"2012-11-20T12:05:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"af898cfc-0ec8-4ded-a87a-914dc68f18d2\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"6673b2f7-f0c6-459e-b72b-7b9d80673b40\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0126\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0126\",\"createdAt\":\"2012-11-20T12:06:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.epic\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"01db2707-8407-4b20-bd0f-a103ae41bb7f\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"d27b8e2f-a155-4392-a41c-74778d211a11\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0127\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0127\",\"createdAt\":\"2013-02-25T13:17:49.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.r-gate\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"343c52cd-39a2-4c26-a713-912bd1369d8d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ad50fc10-8813-4ed3-bd73-b3227727662b\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0128\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0128\",\"createdAt\":\"2013-02-25T13:17:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.dspace\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"16f3b4f5-c962-42d3-8e38-c3663aa4b2fc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3159a96c-a9db-414a-814d-a310c55198a9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0129\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0129\",\"createdAt\":\"2013-02-25T13:18:05.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sba-r\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56186f7b-4aed-448a-82c4-fc5e75e390cc\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"8a90c858-dc67-4497-9ad2-dd565db963d7\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.013\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.013\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"6430fc27-d06c-4812-86ee-e5ed9b43caa4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"3bc18241-218c-4c78-ad33-ca5a0ee581e9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0130\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0130\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.howltest\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"20e6ebfd-ad99-4edc-b004-6297fa7355fa\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"eb54cbad-b235-442f-bbfb-d4544238d659\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0131\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0131\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ubfr\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0c32af9d-4bfe-46a7-86ee-27681433adb4\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"c7de3e15-5777-4904-b1b3-2d8627e4cc84\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0132\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0132\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hbz\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"9213c498-1b98-441b-9eca-2aa961d339cb\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"5de2b101-9f2d-49a4-9fd9-d79926d57ecf\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0133\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0133\",\"createdAt\":\"2013-02-28T10:52:19.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.radar\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"15fe8237-b143-44f8-92e7-dfd98a4f7ec9\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"4c1f31e6-f373-4ae8-b016-08d85dff344c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0134\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0134\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.eumetsat\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"82b4aa1c-f4a1-4744-878b-85ea5ab93310\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"55fcdd7a-787f-43c6-9e26-75e27453c2f6\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0135\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0135\",\"createdAt\":\"2013-02-28T10:52:50.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"7338559d-1a0d-4672-98d6-bc964777482d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"dd1f284c-d464-4bae-809c-ad8cee2e9bc9\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0136\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0136\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.zib-test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"bd5f1c27-97a7-4280-b290-4395afea4598\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cbbd6f7a-b53d-4f17-955d-12436b305b68\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0137\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0137\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.tuhh\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"64821864-1175-450a-bfa4-4ae1e56a7bc1\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"9d71d07b-95bc-409f-8fb2-b244c3647023\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0138\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0138\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.pure\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0ce03289-06a4-477d-987c-71baf4fc2cf8\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"ffcc32de-b3b5-47f5-a8eb-718cf3922906\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.0139\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0139\",\"createdAt\":\"2013-12-11T10:08:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.ovgu\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"65592d2a-526d-4334-a316-f192caabdb32\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"bcbad3f4-0b36-496f-acf4-ecc64969788c\",\"type\":\"provider-prefixes\"}]}}},{\"id\":\"10.014\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.014\",\"createdAt\":\"2015-02-16T10:48:18.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.hefdi\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"tib\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"0e8ad183-deec-4d38-ba5e-f691ab71129d\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"cea07f40-d36d-40b9-abe7-b37d6c42690b\",\"type\":\"provider-prefixes\"}]}}}],\"included\":[{\"id\":\"tib.kit-2\",\"type\":\"clients\",\"attributes\":{\"name\":\"KIT zweiter Testzugang\",\"symbol\":\"TIB.KIT-2\",\"year\":2013,\"contactEmail\":\"clemens.tubach@kit.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kit.edu,ubka.uni-karlsruhe.de,re3data.org\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-13T14:36:16.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft.uu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universiteit Utrecht\",\"symbol\":\"DELFT.UU\",\"year\":2017,\"contactEmail\":\"a.p.m.smeele@uu.nl\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://yoda.uu.nl\",\"created\":\"2017-11-27T11:22:14.000Z\",\"updated\":\"2019-05-24T07:31:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.lj-red\",\"type\":\"clients\",\"attributes\":{\"name\":\"Logistics Journal\",\"symbol\":\"TIB.LJ-RED\",\"year\":2013,\"contactEmail\":\"redaktion@logistics-journal.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"periodical\",\"domains\":\"logistics-journal.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-10T13:48:05.000Z\",\"updated\":\"2019-07-27T08:58:52.000Z\",\"isActive\":true,\"hasPassword\":false},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ovgu\",\"type\":\"clients\",\"attributes\":{\"name\":\"Otto-von-Guericke-Universität Magdeburg, Technologie-Transfer-Zentrum, Universitätsplatz 2, 39106 Magdeburg\",\"symbol\":\"TIB.OVGU\",\"year\":2014,\"contactEmail\":\"springer@ovgu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"www.forschung-sachsen-anhalt.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-04T12:24:43.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hebis\",\"type\":\"clients\",\"attributes\":{\"name\":\"Goethe-Universität Frankfurt\",\"symbol\":\"TIB.HEBIS\",\"year\":2018,\"contactEmail\":\"p.warner@hebis.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"platon.hebis.uni-frankfurt.de,example.org,hebis.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-01-31T13:40:39.000Z\",\"updated\":\"2018-08-26T01:31:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Universität Berlin\",\"symbol\":\"TIB.TUB\",\"year\":2012,\"contactEmail\":\"kern@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tu-berlin.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-20T12:10:50.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zimtest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Heinrich-Heine-Universität Düsseldorf\",\"symbol\":\"TIB.ZIMTEST\",\"year\":2018,\"contactEmail\":\"knipprath@hhu.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"rdtest.hhu.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-18T05:58:33.000Z\",\"updated\":\"2019-03-22T11:44:46.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.avedas\",\"type\":\"clients\",\"attributes\":{\"name\":\"AVEDAS AG\",\"symbol\":\"GESIS.AVEDAS\",\"year\":2012,\"contactEmail\":\"a.engfer@avedas.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2012-11-26T12:48:19.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib\",\"type\":\"clients\",\"attributes\":{\"name\":\"Konrad-Zuse-Zentrum für Informationstechnik, Berlin\",\"symbol\":\"TIB.ZIB\",\"year\":2013,\"contactEmail\":\"hasler@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"servicestelle-digitalisierung.de,zib.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-01-30T09:49:16.000Z\",\"updated\":\"2018-08-26T01:30:29.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.epic\",\"type\":\"clients\",\"attributes\":{\"name\":\"EPIC\",\"symbol\":\"TIB.EPIC\",\"year\":2013,\"contactEmail\":\"uschwar1@gwdg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-22T17:37:01.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.r-gate\",\"type\":\"clients\",\"attributes\":{\"name\":\"ResearchGate\",\"symbol\":\"TIB.R-GATE\",\"year\":2013,\"contactEmail\":\"marcel.oelke@researchgate.net\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchgate.net,rgdoi.net\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-02-25T13:27:45.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.dspace\",\"type\":\"clients\",\"attributes\":{\"name\":\"DSpace\",\"symbol\":\"TIB.DSPACE\",\"year\":2013,\"contactEmail\":\"p.becker@tu-berlin.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dspace.org,example.org,localhost*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-02T14:13:29.000Z\",\"updated\":\"2018-11-29T16:58:22.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sba-r\",\"type\":\"clients\",\"attributes\":{\"name\":\"Secure Business Austria Research gGmbH\",\"symbol\":\"TIB.SBA-R\",\"year\":2013,\"contactEmail\":\"sproell@sba-research.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"datacitation.eu\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-06-28T12:04:27.000Z\",\"updated\":\"2018-08-26T01:30:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universität des Saarlandes\",\"symbol\":\"TIB.SULBDOI\",\"year\":2016,\"contactEmail\":\"support@sulb.uni-saarland.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"scidok.sulb.uni-saarland.de,universaar.sulb.uni-saarland.de,dspace.sulb.uni-saarland.de,publikationen.sulb.uni-saarland.de,dspacetest.sulb.uni-saarland.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-12-22T13:40:19.000Z\",\"updated\":\"2018-12-12T08:07:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.howltest\",\"type\":\"clients\",\"attributes\":{\"name\":\"Technische Hochschule Ostwestfalen-Lippe\",\"symbol\":\"TIB.HOWLTEST\",\"year\":2018,\"contactEmail\":\"nils.arndt@th-owl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://www.th-owl.de/\",\"created\":\"2018-02-15T10:43:50.000Z\",\"updated\":\"2019-04-25T08:52:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubfr\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Freiburg\",\"symbol\":\"TIB.UBFR\",\"year\":2011,\"contactEmail\":\"repositorien@ub.uni-freiburg.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-freiburg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2011-04-01T08:34:34.000Z\",\"updated\":\"2018-08-26T01:30:25.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.hbz\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hochschulbibliothekszentrum NRW\",\"symbol\":\"TIB.HBZ\",\"year\":2013,\"contactEmail\":\"dipp@hbz-nrw.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"dipp.nrw.de,alkyoneus.hbz-nrw.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-12-11T10:10:37.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.radar\",\"type\":\"clients\",\"attributes\":{\"name\":\"RADAR Projekt\",\"symbol\":\"TIB.RADAR\",\"year\":2014,\"contactEmail\":\"Matthias.Razum@fiz-karlsruhe.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"mwalk.de,scc-belab.scc.kit.edu,eng-d-2.fiz-karlsruhe.de,dev.fiz-karlsruhe.de,141.52.166.229\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-02-05T14:53:34.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.eumetsat\",\"type\":\"clients\",\"attributes\":{\"name\":\"EUMETSAT\",\"symbol\":\"TIB.EUMETSAT\",\"year\":2014,\"contactEmail\":\"Peter.Miu@eumetsat.int\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-05-13T13:40:33.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Kaiserslautern\",\"symbol\":\"TIB.TUK-UB\",\"year\":2018,\"contactEmail\":\"kluedo-admin@ub.uni-kl.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"kluedo.ub.uni-kl.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-16T09:39:48.000Z\",\"updated\":\"2018-08-26T01:31:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.zib-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Kooperativer Bibliotheksverbund Berlin-Brandenburg Zuse Institute Berlin\",\"symbol\":\"TIB.ZIB-TEST\",\"year\":2018,\"contactEmail\":\"weihe@zib.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-06-20T09:28:16.000Z\",\"updated\":\"2018-08-26T01:31:14.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.tuhh\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek der TU Hamburg\",\"symbol\":\"TIB.TUHH\",\"year\":2014,\"contactEmail\":\"tub-it@tuhh.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tuhh.de\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2014-07-16T11:11:20.000Z\",\"updated\":\"2019-09-18T07:15:00.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite.pure\",\"type\":\"clients\",\"attributes\":{\"name\":\"CRIS PURE\",\"symbol\":\"DATACITE.PURE\",\"year\":2014,\"contactEmail\":\"c.christensen@elsevier.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devel.atira.dk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-07-16T08:34:39.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},{\"id\":\"tib.hefdi\",\"type\":\"clients\",\"attributes\":{\"name\":\"Hessische Forschungsdateninfrastrukturen (HeFDI), HeBIS-Verbundzentrale\",\"symbol\":\"TIB.HEFDI\",\"year\":2017,\"contactEmail\":\"m.denker@ub.uni-frankfurt.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2017-11-16T09:16:45.000Z\",\"updated\":\"2018-08-26T01:31:08.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":2442,\"totalPages\":98,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":1},{\"id\":\"2019\",\"title\":\"2019\",\"count\":605},{\"id\":\"2018\",\"title\":\"2018\",\"count\":127},{\"id\":\"2017\",\"title\":\"2017\",\"count\":159},{\"id\":\"2016\",\"title\":\"2016\",\"count\":501},{\"id\":\"2015\",\"title\":\"2015\",\"count\":351},{\"id\":\"2014\",\"title\":\"2014\",\"count\":213},{\"id\":\"2013\",\"title\":\"2013\",\"count\":160},{\"id\":\"2012\",\"title\":\"2012\",\"count\":144},{\"id\":\"2011\",\"title\":\"2011\",\"count\":100}],\"states\":[{\"id\":\"with-repository\",\"title\":\"With Repository\",\"count\":1988},{\"id\":\"without-repository\",\"title\":\"Without Repository\",\"count\":288},{\"id\":\"unassigned\",\"title\":\"Unassigned\",\"count\":166}],\"providers\":[],\"clients\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/prefixes?client-id=&include=providers%2Cclients&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&size=25&sort=&state=&year=\",\"next\":\"https://api.test.datacite.org/prefixes?client_id=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider_id=&query=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -98,8 +98,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:29.533Z", - "time": 309, + "startedDateTime": "2020-05-04T16:42:16.213Z", + "time": 187, "timings": { "blocked": -1, "connect": -1, @@ -107,7 +107,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 309 + "wait": 187 } }, { @@ -166,8 +166,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:29.861Z", - "time": 102, + "startedDateTime": "2020-05-04T16:42:16.438Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -175,7 +175,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 102 + "wait": 115 } }, { @@ -225,8 +225,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:29.861Z", - "time": 108, + "startedDateTime": "2020-05-04T16:42:16.438Z", + "time": 131, "timings": { "blocked": -1, "connect": -1, @@ -234,7 +234,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 131 } } ], diff --git a/recordings/Acceptance-user-admin_1577315666/visiting-providers_1061836054/recording.har b/recordings/Acceptance-user-admin_1577315666/visiting-providers_1061836054/recording.har index 82fbe99fc..88f9770e5 100644 --- a/recordings/Acceptance-user-admin_1577315666/visiting-providers_1061836054/recording.har +++ b/recordings/Acceptance-user-admin_1577315666/visiting-providers_1061836054/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | admin/visiting providers", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -83,11 +83,11 @@ "url": "https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=" }, "response": { - "bodySize": 38580, + "bodySize": 39345, "content": { "mimeType": "application/json; charset=utf-8", - "size": 38580, - "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-03-19T05:10:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}},{\"id\":\"brown\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brown University Library\",\"displayName\":\"Brown University Library\",\"symbol\":\"BROWN\",\"website\":\"https://library.brown.edu/\",\"systemEmail\":\"bdr@brown.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05gq02987\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-05-31T13:54:32.000Z\",\"updated\":\"2019-08-13T14:29:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brown.bdr-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70139\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":408,\"totalPages\":17,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":123},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":243},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":141},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":8},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":401},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" + "size": 39345, + "text": "{\"data\":[{\"id\":\"akristia\",\"type\":\"providers\",\"attributes\":{\"name\":\"AA Test Member\",\"displayName\":\"AA Test Member\",\"symbol\":\"AKRISTIA\",\"website\":null,\"systemEmail\":\"kgarza@datacite.org\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":\"#Markdown is cool [link](http://emberjs.com)\",\"region\":null,\"country\":null,\"logoUrl\":\"https://assets.test.datacite.org/images/members/akristia.png?1583231949\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-20T11:03:06.000Z\",\"updated\":\"2020-04-18T04:18:38.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"aa\",\"type\":\"providers\"},{\"id\":\"hola\",\"type\":\"providers\"}]}}},{\"id\":\"aa\",\"type\":\"providers\",\"attributes\":{\"name\":\"AAA\",\"displayName\":\"AAA\",\"symbol\":\"AA\",\"website\":\"http://aaa.org\",\"systemEmail\":\"dsfsd@dsds.cn\",\"groupEmail\":\"dsfsd@dsds.cn\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-08-27T14:20:04.000Z\",\"updated\":\"2020-01-03T13:50:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aa.test2\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80022\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"akristia\",\"type\":\"providers\"}}}},{\"id\":\"akbild\",\"type\":\"providers\",\"attributes\":{\"name\":\"Academy of Fine Arts Vienna\",\"displayName\":\"Academy of Fine Arts Vienna\",\"symbol\":\"AKBILD\",\"website\":\"https://www.akbild.ac.at/Portal/akbild_startpage\",\"systemEmail\":\"a.ferus@akbild.ac.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":\"https://ror.org/029djt864\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"a.ferus@akbild.ac.at\",\"givenName\":\"Andreas \",\"familyName\":\"Ferus\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-09T08:14:29.000Z\",\"updated\":\"2020-01-12T17:34:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.80123\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aafc.data\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"aau\",\"type\":\"providers\",\"attributes\":{\"name\":\"Alpen-Adria-Universität Klagenfurt\",\"displayName\":\"Alpen-Adria-Universität Klagenfurt\",\"symbol\":\"AAU\",\"website\":null,\"systemEmail\":\"Lydia.Zellacher@aau.at\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"AT\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05q9m0937\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-12-11T14:01:41.000Z\",\"updated\":\"2020-01-21T12:40:21.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aau.netlibrary\",\"type\":\"clients\"},{\"id\":\"aau.jmid\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80165\",\"type\":\"prefixes\"},{\"id\":\"10.80167\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"tuwienco\",\"type\":\"providers\"}}}},{\"id\":\"au\",\"type\":\"providers\",\"attributes\":{\"name\":\"American University\",\"displayName\":\"American University\",\"symbol\":\"AU\",\"website\":\"https://american.edu\",\"systemEmail\":\"datacite@american.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/au.png?1583532391\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-10-26T16:47:09.000Z\",\"updated\":\"2020-03-06T22:06:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"au.dra\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33501\",\"type\":\"prefixes\"}]}}},{\"id\":\"bcou\",\"type\":\"providers\",\"attributes\":{\"name\":\"another example\",\"displayName\":\"another example\",\"symbol\":\"BCOU\",\"website\":null,\"systemEmail\":\"robin.dasler@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T12:45:59.000Z\",\"updated\":\"2020-04-22T12:45:59.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"example\",\"type\":\"providers\"}}}},{\"id\":\"ydvs\",\"type\":\"providers\",\"attributes\":{\"name\":\"Applied Coherent Technology, Corp.\",\"displayName\":\"Applied Coherent Technology, Corp.\",\"symbol\":\"YDVS\",\"website\":null,\"systemEmail\":\"vmalaret@actgate.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-18T11:22:27.000Z\",\"updated\":\"2020-02-18T11:23:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcco\",\"type\":\"providers\",\"attributes\":{\"name\":\"ARDC\",\"displayName\":\"ARDC\",\"symbol\":\"ARDCCO\",\"website\":null,\"systemEmail\":\"cel.pilapil@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-13T14:18:37.000Z\",\"updated\":\"2020-05-04T03:08:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"ardcanu\",\"type\":\"providers\"},{\"id\":\"jbtest\",\"type\":\"providers\"},{\"id\":\"uc\",\"type\":\"providers\"},{\"id\":\"jbtestwo\",\"type\":\"providers\"},{\"id\":\"jbthree\",\"type\":\"providers\"},{\"id\":\"ardcliz\",\"type\":\"providers\"},{\"id\":\"jbfive\",\"type\":\"providers\"},{\"id\":\"lwone\",\"type\":\"providers\"},{\"id\":\"lwardct\",\"type\":\"providers\"},{\"id\":\"tardc\",\"type\":\"providers\"},{\"id\":\"tcdu\",\"type\":\"providers\"},{\"id\":\"tunsw\",\"type\":\"providers\"},{\"id\":\"tjcu\",\"type\":\"providers\"},{\"id\":\"tlatrobe\",\"type\":\"providers\"},{\"id\":\"taad\",\"type\":\"providers\"},{\"id\":\"tuwa\",\"type\":\"providers\"},{\"id\":\"tcsiro\",\"type\":\"providers\"},{\"id\":\"tmonash\",\"type\":\"providers\"},{\"id\":\"tala\",\"type\":\"providers\"},{\"id\":\"tanu\",\"type\":\"providers\"},{\"id\":\"tdpaw\",\"type\":\"providers\"},{\"id\":\"taic\",\"type\":\"providers\"},{\"id\":\"tansto\",\"type\":\"providers\"},{\"id\":\"tnti\",\"type\":\"providers\"}]}}},{\"id\":\"aridhia\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aridhia\",\"displayName\":\"Aridhia\",\"symbol\":\"ARIDHIA\",\"website\":\"https://www.aridhia.com/\",\"systemEmail\":\"rodrigo.barnes@aridhia.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"for-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/037mxx572\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-11-14T16:59:47.000Z\",\"updated\":\"2019-08-07T18:36:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"aridhia.test\",\"type\":\"clients\"},{\"id\":\"aridhia.epad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70003\",\"type\":\"prefixes\"},{\"id\":\"10.33541\",\"type\":\"prefixes\"}]}}},{\"id\":\"heallink\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University HEAL-LINK Consortium\",\"displayName\":\"Aristotle University HEAL-LINK Consortium\",\"symbol\":\"HEALLINK\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"zsimaiof@lib.auth.gr\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GR\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-06T11:01:33.000Z\",\"updated\":\"2019-05-24T09:53:32.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"heallink.auth\",\"type\":\"clients\"},{\"id\":\"heallink.datarep\",\"type\":\"clients\"},{\"id\":\"heallink.datasc\",\"type\":\"clients\"},{\"id\":\"heallink.upatras\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.0350\",\"type\":\"prefixes\"},{\"id\":\"10.0351\",\"type\":\"prefixes\"},{\"id\":\"10.0352\",\"type\":\"prefixes\"},{\"id\":\"10.33556\",\"type\":\"prefixes\"},{\"id\":\"10.80157\",\"type\":\"prefixes\"}]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"tuc\",\"type\":\"providers\"},{\"id\":\"onassis\",\"type\":\"providers\"}]}}},{\"id\":\"auth\",\"type\":\"providers\",\"attributes\":{\"name\":\"Aristotle University of Thessaloniki\",\"displayName\":\"Aristotle University of Thessaloniki\",\"symbol\":\"AUTH\",\"website\":null,\"systemEmail\":\"zsimaiof@gmail.com\",\"groupEmail\":\"zsimaiof@gmail.com\",\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-04T08:23:15.000Z\",\"updated\":\"2019-10-04T08:23:15.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"healco\",\"type\":\"providers\"}}}},{\"id\":\"atmire\",\"type\":\"providers\",\"attributes\":{\"name\":\"Atmire\",\"displayName\":\"Atmire\",\"symbol\":\"ATMIRE\",\"website\":null,\"systemEmail\":\"bram@atmire.com\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2017-09-21T11:37:46.000Z\",\"updated\":\"2018-08-26T01:25:41.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[{\"id\":\"10.0850\",\"type\":\"prefixes\"},{\"id\":\"10.0851\",\"type\":\"prefixes\"}]}}},{\"id\":\"hxmq\",\"type\":\"providers\",\"attributes\":{\"name\":\"Auburn University\",\"displayName\":\"Auburn University\",\"symbol\":\"HXMQ\",\"website\":null,\"systemEmail\":\"alk0043@auburn.edu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T15:50:29.000Z\",\"updated\":\"2020-02-29T10:21:54.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"hxmq.ctpbks\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80234\",\"type\":\"prefixes\"}]}}},{\"id\":\"ardcanu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian National University\",\"displayName\":\"Australian National University\",\"symbol\":\"ARDCANU\",\"website\":null,\"systemEmail\":\"services@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/019wvm592\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"givenName\":\"Cel\",\"familyName\":\"Pilapil\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-03-20T01:13:16.000Z\",\"updated\":\"2020-03-20T01:32:31.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"lwardct\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons LWTEST\",\"displayName\":\"Australian Research Data Commons LWTEST\",\"symbol\":\"LWARDCT\",\"website\":null,\"systemEmail\":\"liz.woods@ardc.edu.au\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-29T04:22:26.000Z\",\"updated\":\"2020-04-29T04:25:22.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}}}},{\"id\":\"bankcan\",\"type\":\"providers\",\"attributes\":{\"name\":\"Bank of Canada\",\"displayName\":\"Bank of Canada\",\"symbol\":\"BANKCAN\",\"website\":null,\"systemEmail\":\"jtrower@bank-banque-canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-06T15:51:15.000Z\",\"updated\":\"2020-02-27T15:29:14.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bceln\",\"type\":\"providers\",\"attributes\":{\"name\":\"BC Electronic Library Network\",\"displayName\":\"BC Electronic Library Network\",\"symbol\":\"BCELN\",\"website\":\"https://bceln.ca\",\"systemEmail\":\"brandonw@bceln.ca\",\"groupEmail\":\"office@bceln.ca\",\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"brandonw@bceln.ca\",\"givenName\":\"Brandon\",\"familyName\":\"Weigel\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-07T15:00:27.000Z\",\"updated\":\"2020-02-07T17:22:24.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"blcu\",\"type\":\"providers\",\"attributes\":{\"name\":\"Beijing Language And Culture University\",\"displayName\":\"Beijing Language And Culture University\",\"symbol\":\"BLCU\",\"website\":\"http://english.blcu.edu.cn/\",\"systemEmail\":\"mjh123877@163.com\",\"groupEmail\":null,\"description\":null,\"region\":\"APAC\",\"country\":\"CN\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":false,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"fdsfdsfds\",\"familyName\":\"dfsfdsfds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"fdssdf\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"lilith@email.com\",\"givenName\":\"dsffdd\",\"familyName\":\"dsfdsffds\"},\"created\":\"2018-11-08T14:41:14.000Z\",\"updated\":\"2019-05-22T09:41:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blcu.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.33539\",\"type\":\"prefixes\"}]}}},{\"id\":\"bibsys\",\"type\":\"providers\",\"attributes\":{\"name\":\"BIBSYS\",\"displayName\":\"BIBSYS\",\"symbol\":\"BIBSYS\",\"website\":null,\"systemEmail\":\"jan.erik.garshol@bibsys.no\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NO\",\"logoUrl\":\"//s3-eu-west-1.amazonaws.com/assets.test.datacite.org/home/app/webapp/public/images/members/000/010/089/data.png?1583234233\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T09:47:37.000Z\",\"updated\":\"2020-03-03T11:17:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bibsys.uit-ord\",\"type\":\"clients\"},{\"id\":\"bibsys.uninett\",\"type\":\"clients\"},{\"id\":\"bibsys.bibsys\",\"type\":\"clients\"},{\"id\":\"bibsys.nsd\",\"type\":\"clients\"},{\"id\":\"bibsys.npolar\",\"type\":\"clients\"},{\"id\":\"bibsys.nmdc\",\"type\":\"clients\"},{\"id\":\"bibsys.nilu\",\"type\":\"clients\"},{\"id\":\"bibsys.dlr\",\"type\":\"clients\"},{\"id\":\"bibsys.ntnu\",\"type\":\"clients\"},{\"id\":\"bibsys.nibio\",\"type\":\"clients\"},{\"id\":\"bibsys.bi\",\"type\":\"clients\"},{\"id\":\"bibsys.met\",\"type\":\"clients\"},{\"id\":\"bibsys.nina\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.18711\",\"type\":\"prefixes\"},{\"id\":\"10.18710\",\"type\":\"prefixes\"},{\"id\":\"10.18712\",\"type\":\"prefixes\"},{\"id\":\"10.21335\",\"type\":\"prefixes\"},{\"id\":\"10.21334\",\"type\":\"prefixes\"},{\"id\":\"10.21339\",\"type\":\"prefixes\"},{\"id\":\"10.21338\",\"type\":\"prefixes\"},{\"id\":\"10.21337\",\"type\":\"prefixes\"},{\"id\":\"10.21336\",\"type\":\"prefixes\"},{\"id\":\"10.21353\",\"type\":\"prefixes\"},{\"id\":\"10.21350\",\"type\":\"prefixes\"},{\"id\":\"10.21360\",\"type\":\"prefixes\"},{\"id\":\"10.21340\",\"type\":\"prefixes\"},{\"id\":\"10.21341\",\"type\":\"prefixes\"},{\"id\":\"10.21346\",\"type\":\"prefixes\"},{\"id\":\"10.21348\",\"type\":\"prefixes\"},{\"id\":\"10.21347\",\"type\":\"prefixes\"},{\"id\":\"10.21380\",\"type\":\"prefixes\"},{\"id\":\"10.21378\",\"type\":\"prefixes\"},{\"id\":\"10.21372\",\"type\":\"prefixes\"},{\"id\":\"10.21400\",\"type\":\"prefixes\"},{\"id\":\"10.21393\",\"type\":\"prefixes\"},{\"id\":\"10.21392\",\"type\":\"prefixes\"},{\"id\":\"10.21391\",\"type\":\"prefixes\"},{\"id\":\"10.21390\",\"type\":\"prefixes\"},{\"id\":\"10.21403\",\"type\":\"prefixes\"},{\"id\":\"10.21385\",\"type\":\"prefixes\"},{\"id\":\"10.21386\",\"type\":\"prefixes\"},{\"id\":\"10.21384\",\"type\":\"prefixes\"},{\"id\":\"10.21388\",\"type\":\"prefixes\"}]}}},{\"id\":\"blackfyn\",\"type\":\"providers\",\"attributes\":{\"name\":\"Blackfynn Inc.\",\"displayName\":\"Blackfynn\",\"symbol\":\"BLACKFYN\",\"website\":\"https://www.blackfynn.com/\",\"systemEmail\":\"joost@blackfynn.com\",\"groupEmail\":null,\"description\":\"New tools and technologies are generating vast quantities of highly complex and diverse data. Electrical recordings, radiology imaging, genomics, pathology, neurochemistry, device and patient clinical data — together — could hold the keys to understanding the basis of human disease. Breakthrough discoveries that could lead to novel therapeutics have been hindered by an inability to see, use, collaborate around, analyze and interrogate all data types in combination to find new data patterns.\\n\\nWe built our platform to solve this problem. We came together to improve the lives of the more than one billion people worldwide who are living with epilepsy, Alzheimer’s disease, Parkinson’s disease, ALS and other neurological diseases.\",\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryTechnicalContact\":{},\"billingContact\":{\"email\":\"finance@blackfynn.com\",\"givenName\":\"Dmitriy\",\"familyName\":\"Kreminskiy\"},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"joost@blackfynn.com\",\"givenName\":\"Joost\",\"familyName\":\"Wagenaar\"},\"created\":\"2019-01-25T16:40:41.000Z\",\"updated\":\"2020-02-29T09:24:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"blackfyn.blackfyn\",\"type\":\"clients\"},{\"id\":\"blackfyn.discover\",\"type\":\"clients\"},{\"id\":\"blackfyn.test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21397\",\"type\":\"prefixes\"}]}}},{\"id\":\"brand\",\"type\":\"providers\",\"attributes\":{\"name\":\"Brandon University\",\"displayName\":\"Brandon University\",\"symbol\":\"BRAND\",\"website\":null,\"systemEmail\":\"Hurst@BrandonU.CA\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-02-13T20:28:30.000Z\",\"updated\":\"2020-02-20T09:11:09.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"brand.burep1\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"bdtest\",\"type\":\"providers\",\"attributes\":{\"name\":\"Britta's Provider Test Account\",\"displayName\":\"Britta's Provider Test Account\",\"symbol\":\"BDTEST\",\"website\":\"https://www.datacite.org\",\"systemEmail\":\"britta.dreyer@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/0304hq317\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2018-02-13T09:01:12.000Z\",\"updated\":\"2019-07-09T13:15:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bdtest.one\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70031\",\"type\":\"prefixes\"}]}}},{\"id\":\"broad\",\"type\":\"providers\",\"attributes\":{\"name\":\"Broad Institute\",\"displayName\":\"Broad Institute\",\"symbol\":\"BROAD\",\"website\":\"https://www.broadinstitute.org/\",\"systemEmail\":\"dheiman@broadinstitute.org\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"/images/medium/missing.png\",\"memberType\":\"direct_member\",\"organizationType\":\"researchInstitution\",\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-02-08T22:33:16.000Z\",\"updated\":\"2020-01-03T17:05:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"broad.broad\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.70107\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":439,\"totalPages\":18,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":135},{\"id\":\"2019\",\"title\":\"2019\",\"count\":191},{\"id\":\"2018\",\"title\":\"2018\",\"count\":55},{\"id\":\"2017\",\"title\":\"2017\",\"count\":19},{\"id\":\"2016\",\"title\":\"2016\",\"count\":13},{\"id\":\"2015\",\"title\":\"2015\",\"count\":1},{\"id\":\"2014\",\"title\":\"2014\",\"count\":4},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":5}],\"regions\":[{\"id\":\"amer\",\"title\":\"Americas\",\"count\":125},{\"id\":\"emea\",\"title\":\"Europe, Middle East and Africa\",\"count\":53},{\"id\":\"apac\",\"title\":\"Asia and Pacific\",\"count\":14}],\"memberTypes\":[{\"id\":\"direct_member\",\"title\":\"Direct Member\",\"count\":245},{\"id\":\"consortium_organization\",\"title\":\"Consortium Organization\",\"count\":170},{\"id\":\"consortium\",\"title\":\"Consortium\",\"count\":23},{\"id\":\"registration_agency\",\"title\":\"Registration Agency\",\"count\":1}],\"organizationTypes\":[{\"id\":\"academicInstitution\",\"title\":\"Academic Institution\",\"count\":62},{\"id\":\"researchInstitution\",\"title\":\"Research Institution\",\"count\":22},{\"id\":\"nationalInstitution\",\"title\":\"National Institution\",\"count\":10},{\"id\":\"governmentAgency\",\"title\":\"Government Agency\",\"count\":9},{\"id\":\"serviceProvider\",\"title\":\"Service Provider\",\"count\":8},{\"id\":\"other\",\"title\":\"Other\",\"count\":3}],\"focusAreas\":[{\"id\":\"general\",\"title\":\"General\",\"count\":49},{\"id\":\"medicalAndHealthSciences\",\"title\":\"Medical And Health Sciences\",\"count\":10},{\"id\":\"naturalSciences\",\"title\":\"Natural Sciences\",\"count\":9},{\"id\":\"engineeringAndTechnology\",\"title\":\"Engineering And Technology\",\"count\":5},{\"id\":\"agriculturalSciences\",\"title\":\"Agricultural Sciences\",\"count\":3},{\"id\":\"socialSciences\",\"title\":\"Social Sciences\",\"count\":3},{\"id\":\"humanities\",\"title\":\"Humanities\",\"count\":1}],\"nonProfitStatuses\":[{\"id\":\"non-profit\",\"title\":\"Non Profit\",\"count\":432},{\"id\":\"for-profit\",\"title\":\"For Profit\",\"count\":7}]},\"links\":{\"self\":\"https://api.test.datacite.org/providers?focus-area=&include-deleted=&member-type=&non-profit-status=&organization-type=&page%5Bnumber%5D=1&page%5Bsize%5D=25&query=®ion=&size=25&sort=&year=\",\"next\":\"https://api.test.datacite.org/providers?focus-area=&member_type=&non-profit-status=&organization_type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&query=®ion=&sort%5Bname.raw%5D%5Border%5D=asc&year=\"}}" }, "cookies": [], "headers": [ @@ -106,8 +106,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:28.088Z", - "time": 244, + "startedDateTime": "2020-05-04T16:42:15.177Z", + "time": 139, "timings": { "blocked": -1, "connect": -1, @@ -115,11 +115,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 244 + "wait": 139 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -135,18 +135,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -165,8 +174,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:28.356Z", - "time": 163, + "startedDateTime": "2020-05-04T16:42:15.377Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -174,11 +183,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 163 + "wait": 99 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -194,27 +203,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -233,8 +233,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:28.356Z", - "time": 165, + "startedDateTime": "2020-05-04T16:42:15.377Z", + "time": 104, "timings": { "blocked": -1, "connect": -1, @@ -242,7 +242,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 165 + "wait": 104 } } ], diff --git a/recordings/Acceptance-user-admin_1577315666/visiting-repositories_601244364/recording.har b/recordings/Acceptance-user-admin_1577315666/visiting-repositories_601244364/recording.har index ebc4372ab..3952860c5 100644 --- a/recordings/Acceptance-user-admin_1577315666/visiting-repositories_601244364/recording.har +++ b/recordings/Acceptance-user-admin_1577315666/visiting-repositories_601244364/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | admin/visiting repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -87,11 +87,11 @@ "url": "https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=" }, "response": { - "bodySize": 132870, + "bodySize": 126599, "content": { "mimeType": "application/json; charset=utf-8", - "size": 132870, - "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":\"## I am a repository\\n\\n- one repo\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-03-12T10:05:23.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-03-24T09:39:18.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ethz.test\",\"type\":\"clients\"},{\"id\":\"ethz.e-coll\",\"type\":\"clients\"},{\"id\":\"ethz.seals\",\"type\":\"clients\"},{\"id\":\"ethz.dodis\",\"type\":\"clients\"},{\"id\":\"ethz.ar\",\"type\":\"clients\"},{\"id\":\"ethz.uzh-al\",\"type\":\"clients\"},{\"id\":\"ethz.corssa\",\"type\":\"clients\"},{\"id\":\"ethz.jroi\",\"type\":\"clients\"},{\"id\":\"ethz.unibas\",\"type\":\"clients\"},{\"id\":\"ethz.wgms\",\"type\":\"clients\"},{\"id\":\"ethz.ids-lu\",\"type\":\"clients\"},{\"id\":\"ethz.lives\",\"type\":\"clients\"},{\"id\":\"ethz.epfl\",\"type\":\"clients\"},{\"id\":\"ethz.da-rd\",\"type\":\"clients\"},{\"id\":\"ethz.e-manus\",\"type\":\"clients\"},{\"id\":\"ethz.ubasojs\",\"type\":\"clients\"},{\"id\":\"ethz.ma\",\"type\":\"clients\"},{\"id\":\"ethz.bopalt\",\"type\":\"clients\"},{\"id\":\"ethz.zora\",\"type\":\"clients\"},{\"id\":\"ethz.ecodices\",\"type\":\"clients\"},{\"id\":\"ethz.sed\",\"type\":\"clients\"},{\"id\":\"ethz.e-rara\",\"type\":\"clients\"},{\"id\":\"ethz.li\",\"type\":\"clients\"},{\"id\":\"ethz.dmm\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ad\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ba\",\"type\":\"clients\"},{\"id\":\"ethz.smif\",\"type\":\"clients\"},{\"id\":\"ethz.lo\",\"type\":\"clients\"},{\"id\":\"ethz.fsw\",\"type\":\"clients\"},{\"id\":\"ethz.itis\",\"type\":\"clients\"},{\"id\":\"ethz.infoclio\",\"type\":\"clients\"},{\"id\":\"ethz.boris\",\"type\":\"clients\"},{\"id\":\"ethz.bopitw\",\"type\":\"clients\"},{\"id\":\"ethz.wsl\",\"type\":\"clients\"},{\"id\":\"ethz.iumsppub\",\"type\":\"clients\"},{\"id\":\"ethz.iumspdat\",\"type\":\"clients\"},{\"id\":\"ethz.rfre\",\"type\":\"clients\"},{\"id\":\"ethz.phsg\",\"type\":\"clients\"},{\"id\":\"ethz.bopjemr\",\"type\":\"clients\"},{\"id\":\"ethz.permos\",\"type\":\"clients\"},{\"id\":\"ethz.epics3\",\"type\":\"clients\"},{\"id\":\"ethz.inblog\",\"type\":\"clients\"},{\"id\":\"ethz.hopepsy\",\"type\":\"clients\"},{\"id\":\"ethz.zhaw\",\"type\":\"clients\"},{\"id\":\"ethz.ms\",\"type\":\"clients\"},{\"id\":\"ethz.ubemo\",\"type\":\"clients\"},{\"id\":\"ethz.epics-bs\",\"type\":\"clients\"},{\"id\":\"ethz.hopesui\",\"type\":\"clients\"},{\"id\":\"ethz.epics-ki\",\"type\":\"clients\"},{\"id\":\"ethz.epics-st\",\"type\":\"clients\"},{\"id\":\"ethz.soz\",\"type\":\"clients\"},{\"id\":\"ethz.wsllfi\",\"type\":\"clients\"},{\"id\":\"ethz.bopinfo\",\"type\":\"clients\"},{\"id\":\"ethz.dodisint\",\"type\":\"clients\"},{\"id\":\"ethz.hes\",\"type\":\"clients\"},{\"id\":\"ethz.marvel\",\"type\":\"clients\"},{\"id\":\"ethz.historiaiuris\",\"type\":\"clients\"},{\"id\":\"ethz.agroscope\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3929\",\"type\":\"prefixes\"},{\"id\":\"10.3930\",\"type\":\"prefixes\"},{\"id\":\"10.3931\",\"type\":\"prefixes\"},{\"id\":\"10.3932\",\"type\":\"prefixes\"},{\"id\":\"10.3933\",\"type\":\"prefixes\"},{\"id\":\"10.5075\",\"type\":\"prefixes\"},{\"id\":\"10.5076\",\"type\":\"prefixes\"},{\"id\":\"10.5078\",\"type\":\"prefixes\"},{\"id\":\"10.5079\",\"type\":\"prefixes\"},{\"id\":\"10.5166\",\"type\":\"prefixes\"},{\"id\":\"10.5167\",\"type\":\"prefixes\"},{\"id\":\"10.5169\",\"type\":\"prefixes\"},{\"id\":\"10.5170\",\"type\":\"prefixes\"},{\"id\":\"10.5448\",\"type\":\"prefixes\"},{\"id\":\"10.5449\",\"type\":\"prefixes\"},{\"id\":\"10.5450\",\"type\":\"prefixes\"},{\"id\":\"10.5451\",\"type\":\"prefixes\"},{\"id\":\"10.5452\",\"type\":\"prefixes\"},{\"id\":\"10.5168\",\"type\":\"prefixes\"},{\"id\":\"10.5903\",\"type\":\"prefixes\"},{\"id\":\"10.5904\",\"type\":\"prefixes\"},{\"id\":\"10.5905\",\"type\":\"prefixes\"},{\"id\":\"10.5906\",\"type\":\"prefixes\"},{\"id\":\"10.5907\",\"type\":\"prefixes\"},{\"id\":\"10.12682\",\"type\":\"prefixes\"},{\"id\":\"10.12683\",\"type\":\"prefixes\"},{\"id\":\"10.12684\",\"type\":\"prefixes\"},{\"id\":\"10.12685\",\"type\":\"prefixes\"},{\"id\":\"10.12686\",\"type\":\"prefixes\"},{\"id\":\"10.7890\",\"type\":\"prefixes\"},{\"id\":\"10.7891\",\"type\":\"prefixes\"},{\"id\":\"10.7894\",\"type\":\"prefixes\"},{\"id\":\"10.7892\",\"type\":\"prefixes\"},{\"id\":\"10.13097\",\"type\":\"prefixes\"},{\"id\":\"10.13096\",\"type\":\"prefixes\"},{\"id\":\"10.13100\",\"type\":\"prefixes\"},{\"id\":\"10.13099\",\"type\":\"prefixes\"},{\"id\":\"10.13098\",\"type\":\"prefixes\"},{\"id\":\"10.13093\",\"type\":\"prefixes\"},{\"id\":\"10.13092\",\"type\":\"prefixes\"},{\"id\":\"10.13095\",\"type\":\"prefixes\"},{\"id\":\"10.13094\",\"type\":\"prefixes\"},{\"id\":\"10.13091\",\"type\":\"prefixes\"},{\"id\":\"10.16909\",\"type\":\"prefixes\"},{\"id\":\"10.16908\",\"type\":\"prefixes\"},{\"id\":\"10.16907\",\"type\":\"prefixes\"},{\"id\":\"10.16906\",\"type\":\"prefixes\"},{\"id\":\"10.16905\",\"type\":\"prefixes\"},{\"id\":\"10.16904\",\"type\":\"prefixes\"},{\"id\":\"10.16903\",\"type\":\"prefixes\"},{\"id\":\"10.16902\",\"type\":\"prefixes\"},{\"id\":\"10.16911\",\"type\":\"prefixes\"},{\"id\":\"10.16910\",\"type\":\"prefixes\"},{\"id\":\"10.18749\",\"type\":\"prefixes\"},{\"id\":\"10.18748\",\"type\":\"prefixes\"},{\"id\":\"10.18747\",\"type\":\"prefixes\"},{\"id\":\"10.18752\",\"type\":\"prefixes\"},{\"id\":\"10.18753\",\"type\":\"prefixes\"},{\"id\":\"10.18750\",\"type\":\"prefixes\"},{\"id\":\"10.18751\",\"type\":\"prefixes\"},{\"id\":\"10.18756\",\"type\":\"prefixes\"},{\"id\":\"10.18754\",\"type\":\"prefixes\"},{\"id\":\"10.18755\",\"type\":\"prefixes\"},{\"id\":\"10.21258\",\"type\":\"prefixes\"},{\"id\":\"10.21257\",\"type\":\"prefixes\"},{\"id\":\"10.21256\",\"type\":\"prefixes\"},{\"id\":\"10.21255\",\"type\":\"prefixes\"},{\"id\":\"10.21259\",\"type\":\"prefixes\"},{\"id\":\"10.21260\",\"type\":\"prefixes\"},{\"id\":\"10.21261\",\"type\":\"prefixes\"},{\"id\":\"10.21263\",\"type\":\"prefixes\"},{\"id\":\"10.21262\",\"type\":\"prefixes\"},{\"id\":\"10.21264\",\"type\":\"prefixes\"},{\"id\":\"10.22019\",\"type\":\"prefixes\"},{\"id\":\"10.22018\",\"type\":\"prefixes\"},{\"id\":\"10.22013\",\"type\":\"prefixes\"},{\"id\":\"10.22012\",\"type\":\"prefixes\"},{\"id\":\"10.22015\",\"type\":\"prefixes\"},{\"id\":\"10.22014\",\"type\":\"prefixes\"},{\"id\":\"10.22016\",\"type\":\"prefixes\"},{\"id\":\"10.22009\",\"type\":\"prefixes\"},{\"id\":\"10.26039\",\"type\":\"prefixes\"},{\"id\":\"10.24435\",\"type\":\"prefixes\"},{\"id\":\"10.24434\",\"type\":\"prefixes\"},{\"id\":\"10.24437\",\"type\":\"prefixes\"},{\"id\":\"10.24439\",\"type\":\"prefixes\"},{\"id\":\"10.24442\",\"type\":\"prefixes\"},{\"id\":\"10.24445\",\"type\":\"prefixes\"},{\"id\":\"10.24452\",\"type\":\"prefixes\"},{\"id\":\"10.26032\",\"type\":\"prefixes\"},{\"id\":\"10.26035\",\"type\":\"prefixes\"},{\"id\":\"10.26037\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2098,\"totalPages\":84,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":183},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":252},{\"id\":\"cdl\",\"title\":\"California Digital Library\",\"count\":232},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":147},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":119},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":115},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":93},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":61},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":59},{\"id\":\"mtakik\",\"title\":\"MTA Könyvtára\",\"count\":59},{\"id\":\"osti\",\"title\":\"Office of Scientific and Technical Information (OSTI), US Department of Energy\",\"count\":55},{\"id\":\"zbmed\",\"title\":\"German National Library of Medicine\",\"count\":53},{\"id\":\"crui\",\"title\":\"Conferenza dei Rettori delle Università Italiane\",\"count\":47},{\"id\":\"subgoe\",\"title\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"count\":46},{\"id\":\"purdue\",\"title\":\"Purdue University Library\",\"count\":43},{\"id\":\"cisti\",\"title\":\"Canada Institute for Scientific and Technical Information\",\"count\":41}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2040},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":68},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":23},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":16},{\"id\":\"other\",\"title\":\"Other\",\"count\":13},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":9},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":16},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":14},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1},{\"id\":\"islandora\",\"title\":\"Islandora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" + "size": 126599, + "text": "{\"data\":[{\"id\":\"ethz.ubasojs\",\"type\":\"repositories\",\"attributes\":{\"name\":\"027.7 - Zeitschrift für Bibliothekskultur\",\"symbol\":\"ETHZ.UBASOJS\",\"re3data\":null,\"opendoar\":null,\"year\":2013,\"systemEmail\":\"barbara.hirschmann@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"0277.ch\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2013-03-21T11:02:47.000Z\",\"updated\":\"2020-04-24T04:50:10.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.12685\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.datacent\",\"type\":\"repositories\",\"attributes\":{\"name\":\"3TU Datacentrum\",\"symbol\":\"DELFT.DATACENT\",\"re3data\":null,\"opendoar\":null,\"year\":2011,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2011-09-30T09:18:16.000Z\",\"updated\":\"2020-01-22T23:41:20.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"}]}}},{\"id\":\"delft.data4tu\",\"type\":\"repositories\",\"attributes\":{\"name\":\"4TU.Centre for Research Data\",\"symbol\":\"DELFT.DATA4TU\",\"re3data\":\"https://doi.org/10.17616/R3VG6N\",\"opendoar\":null,\"year\":2016,\"systemEmail\":\"M.M.E.deSmaele@tudelft.nl\",\"alternateName\":null,\"description\":\"4TU.ResearchData, previously known as 3TU.Datacentrum, is an archive for research data. It offers the knowledge, experience and the tools to share and safely store scientific research data in a standardized, secure and well-documented manner. 4TU.Centre for Research Data provides the research community with:\\r\\nAdvice and support on data management;\\r\\nA long-term archive for scientific research data;\\r\\nSupport for current research projects;\\r\\nTools for reusing research data.\",\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":\"https://researchdata.4tu.nl/en/home/\",\"created\":\"2016-05-30T07:36:11.000Z\",\"updated\":\"2019-11-05T14:10:51.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"delft\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.ct9\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAA_ANDS_TEST\",\"symbol\":\"ANDS.CT9\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"leo.monus@anu.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2018-06-25T02:51:50.000Z\",\"updated\":\"2019-03-03T23:39:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dk.aau\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aalborg University Library\",\"symbol\":\"DK.AAU\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"kl@aub.aau.dk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"vbn.aau.dk,journals.aau.dk\",\"issn\":[],\"url\":null,\"created\":\"2012-11-28T08:22:41.000Z\",\"updated\":\"2019-07-30T10:13:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dk\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.5278\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.aas\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AAS\",\"symbol\":\"CDL.AAS\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2012-03-06T05:37:31.000Z\",\"updated\":\"2018-08-26T01:30:28.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6074\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl.abertay\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Abertay University\",\"symbol\":\"BL.ABERTAY\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"Repository@abertay.ac.uk\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abertay.ac.uk\",\"issn\":{},\"url\":null,\"created\":\"2017-02-03T11:12:26.000Z\",\"updated\":\"2019-08-27T12:59:01.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist.anc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Académie Nationale de Chirurgie\",\"symbol\":\"INIST.ANC\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"patrice.le-floch-prigent@univ-paris5.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-06-20T07:40:35.000Z\",\"updated\":\"2020-01-03T14:11:44.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.17881\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig.aran\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Access to Research at NUI Galway\",\"symbol\":\"NUIG.ARAN\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"aran@nuigalway.ie\",\"alternateName\":\"ARAN\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":\"https://aran.library.nuigalway.ie\",\"created\":\"2019-10-30T14:56:16.000Z\",\"updated\":\"2020-02-10T11:43:41.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"nuig\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.abpa\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Biologica Plantarum Agriensis\",\"symbol\":\"MTAKIK.ABPA\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"abpa.ektf.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-10-06T14:57:14.000Z\",\"updated\":\"2019-07-28T23:08:09.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21406\",\"type\":\"prefixes\"}]}}},{\"id\":\"mtakik.regrurum\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Acta Regionis Rurum\",\"symbol\":\"MTAKIK.REGRURUM\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"bilicsi.erika@konyvtar.mta.hu\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"archivum.szie.hu\",\"issn\":[],\"url\":null,\"created\":\"2016-11-17T14:56:10.000Z\",\"updated\":\"2019-07-28T23:08:30.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"mtakik\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21408\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80096\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.adama\",\"type\":\"repositories\",\"attributes\":{\"name\":\"ADAMA Web S.L.\",\"symbol\":\"TIB.ADAMA\",\"re3data\":null,\"opendoar\":null,\"year\":2012,\"systemEmail\":\"soporte@adamaweb.com\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"unioviedo.es\",\"issn\":{},\"url\":null,\"created\":\"2012-01-16T10:45:42.000Z\",\"updated\":\"2019-08-08T10:28:12.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.6095\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl.adaptive\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Adaptive Biotechnologies\",\"symbol\":\"CDL.ADAPTIVE\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"ezid@ucop.edu\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":null,\"url\":null,\"created\":\"2016-07-08T17:59:30.000Z\",\"updated\":\"2018-08-26T01:30:59.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cdl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21417\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.c1054\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AddAPrefix\",\"symbol\":\"ANDS.C1054\",\"re3data\":null,\"opendoar\":null,\"year\":2018,\"systemEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"ands.org.au\",\"issn\":null,\"url\":null,\"created\":\"2018-06-26T02:10:36.000Z\",\"updated\":\"2019-03-03T23:39:47.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.aeris\",\"type\":\"repositories\",\"attributes\":{\"name\":\"AERIS - Pôle français de données et services pour l'atmosphère\",\"symbol\":\"INIST.AERIS\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"guillaume.brissebrat@ipsl.fr\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aeris-data.fr\",\"issn\":{},\"url\":null,\"created\":\"2017-08-01T14:33:32.000Z\",\"updated\":\"2020-01-17T14:34:22.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"givenName\":\"Guillaume\",\"familyName\":\"Brissebrat\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.25326\",\"type\":\"prefixes\"}]}}},{\"id\":\"ethz.acj\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Cities Journal\",\"symbol\":\"ETHZ.ACJ\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"doi@library.ethz.ch\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{\"issnl\":null,\"print\":null,\"electronic\":null},\"url\":null,\"created\":\"2020-04-14T06:16:27.000Z\",\"updated\":\"2020-04-14T11:20:15.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"doi@library.ethz.ch\",\"givenName\":\"DOI Desk\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ethz\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.34915\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui.aphrc\",\"type\":\"repositories\",\"attributes\":{\"name\":\"African Population and Health Research Centre\",\"symbol\":\"CRUI.APHRC\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"cfaye@aphrc.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aphrc.org\",\"issn\":null,\"url\":null,\"created\":\"2016-12-21T09:25:20.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":false,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"crui\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.20369\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc.data\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC.DATA\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"governmental\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-04-22T20:30:54.000Z\",\"updated\":\"2020-04-22T22:11:17.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"aafc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80275\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands.centre92\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Agriculture Victoria\",\"symbol\":\"ANDS.CENTRE92\",\"re3data\":null,\"opendoar\":null,\"year\":2019,\"systemEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"vro.agriculture.vic.gov.au\",\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:08:50.000Z\",\"updated\":\"2020-03-11T23:02:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.70142\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.akbild\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der bildenden Künste Wien\",\"symbol\":\"TIB.AKBILD\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"d.mitterhuber@akbild.ac.at\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"arepository.akbild.ac.at\",\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:27:47.000Z\",\"updated\":\"2019-01-21T15:53:42.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21937\",\"type\":\"prefixes\"}]}}},{\"id\":\"subgoe.adwgoe\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Akademie der Wissenschaften zu Göttingen\",\"symbol\":\"SUBGOE.ADWGOE\",\"re3data\":null,\"opendoar\":null,\"year\":2020,\"systemEmail\":\"tbode1@gwdg.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2020-03-12T14:37:34.000Z\",\"updated\":\"2020-04-28T12:27:59.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"subgoe\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.80133\",\"type\":\"prefixes\"}]}}},{\"id\":\"zbmed.aps\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Aktionsbündnis Patientensicherheit e.V.\",\"symbol\":\"ZBMED.APS\",\"re3data\":null,\"opendoar\":null,\"year\":2016,\"systemEmail\":\"anke.tietgen@tk.de\",\"alternateName\":null,\"description\":null,\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"aps-ev.de\",\"issn\":null,\"url\":null,\"created\":\"2016-12-20T16:25:22.000Z\",\"updated\":\"2018-08-26T01:31:04.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.21960\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis.hiig\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alexander von Humboldt Institut für Internet und Gesellschaft\",\"symbol\":\"GESIS.HIIG\",\"re3data\":null,\"opendoar\":null,\"year\":2014,\"systemEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"clientType\":\"periodical\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"policyreview.info,policy-review.info\",\"issn\":[],\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2019-07-28T23:14:16.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.14763\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib.awi\",\"type\":\"repositories\",\"attributes\":{\"name\":\"Alfred Wegener Institute\",\"symbol\":\"TIB.AWI\",\"re3data\":\"https://doi.org/10.17616/R3PS66\",\"opendoar\":null,\"year\":2011,\"systemEmail\":\"hannes.grobe@awi.de\",\"alternateName\":\"including: AWI EXPEDITION\",\"description\":\"Our data portal data.awi.de offers an integrative one-stop shop framework for discovering AWI research platforms including devices and sensors, tracklines, field reports, peer-reviewed publications, GIS products and mostly important data and data products archived in PANGAEA.\",\"clientType\":\"repository\",\"repositoryType\":[\"institutional\"],\"language\":[\"en\"],\"certificate\":[],\"domains\":\"getinfo.de\",\"issn\":[],\"url\":\"https://data.awi.de/?site=home\",\"created\":\"2011-11-24T12:21:02.000Z\",\"updated\":\"2019-08-03T07:21:40.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.2312\",\"type\":\"prefixes\"}]}}}],\"included\":[{\"id\":\"ethz\",\"type\":\"providers\",\"attributes\":{\"name\":\"ETH Zurich\",\"displayName\":\"ETH Zurich\",\"symbol\":\"ETHZ\",\"website\":null,\"systemEmail\":\"doi@library.ethz.ch\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-04-30T12:27:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"delft\",\"type\":\"providers\",\"attributes\":{\"name\":\"TU Delft Library\",\"displayName\":\"TU Delft Library\",\"symbol\":\"DELFT\",\"website\":\"https://www.tudelft.nl\",\"systemEmail\":\"m.m.e.desmaele@tudelft.nl\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"NL\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-06-22T22:23:51.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"delft.tudelft\",\"type\":\"clients\"},{\"id\":\"delft.datacent\",\"type\":\"clients\"},{\"id\":\"delft.jrc\",\"type\":\"clients\"},{\"id\":\"delft.tue\",\"type\":\"clients\"},{\"id\":\"delft.tudarch\",\"type\":\"clients\"},{\"id\":\"delft.vliz\",\"type\":\"clients\"},{\"id\":\"delft.test\",\"type\":\"clients\"},{\"id\":\"delft.eur\",\"type\":\"clients\"},{\"id\":\"delft.iea\",\"type\":\"clients\"},{\"id\":\"delft.easy\",\"type\":\"clients\"},{\"id\":\"delft.dans\",\"type\":\"clients\"},{\"id\":\"delft.tissue\",\"type\":\"clients\"},{\"id\":\"delft.maastro\",\"type\":\"clients\"},{\"id\":\"delft.nibg\",\"type\":\"clients\"},{\"id\":\"delft.tlo\",\"type\":\"clients\"},{\"id\":\"delft.tpm\",\"type\":\"clients\"},{\"id\":\"delft.bira\",\"type\":\"clients\"},{\"id\":\"delft.isric\",\"type\":\"clients\"},{\"id\":\"delft.data4tu\",\"type\":\"clients\"},{\"id\":\"delft.uva\",\"type\":\"clients\"},{\"id\":\"delft.hva\",\"type\":\"clients\"},{\"id\":\"delft.knmi\",\"type\":\"clients\"},{\"id\":\"delft.surfsara\",\"type\":\"clients\"},{\"id\":\"delft.uu\",\"type\":\"clients\"},{\"id\":\"delft.greynet\",\"type\":\"clients\"},{\"id\":\"delft.lis\",\"type\":\"clients\"},{\"id\":\"delft.nikola\",\"type\":\"clients\"},{\"id\":\"delft.rugtest\",\"type\":\"clients\"},{\"id\":\"delft.ciredtest\",\"type\":\"clients\"},{\"id\":\"delft.cpbtest\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4121\",\"type\":\"prefixes\"},{\"id\":\"10.4233\",\"type\":\"prefixes\"},{\"id\":\"10.5074\",\"type\":\"prefixes\"},{\"id\":\"10.5290\",\"type\":\"prefixes\"},{\"id\":\"10.6100\",\"type\":\"prefixes\"},{\"id\":\"10.7480\",\"type\":\"prefixes\"},{\"id\":\"10.14284\",\"type\":\"prefixes\"},{\"id\":\"10.15133\",\"type\":\"prefixes\"},{\"id\":\"10.00012\",\"type\":\"prefixes\"},{\"id\":\"10.15478\",\"type\":\"prefixes\"},{\"id\":\"10.17027\",\"type\":\"prefixes\"},{\"id\":\"10.17026\",\"type\":\"prefixes\"},{\"id\":\"10.17046\",\"type\":\"prefixes\"},{\"id\":\"10.17195\",\"type\":\"prefixes\"},{\"id\":\"10.18146\",\"type\":\"prefixes\"},{\"id\":\"10.18757\",\"type\":\"prefixes\"},{\"id\":\"10.18758\",\"type\":\"prefixes\"},{\"id\":\"10.21946\",\"type\":\"prefixes\"},{\"id\":\"10.21945\",\"type\":\"prefixes\"},{\"id\":\"10.21944\",\"type\":\"prefixes\"},{\"id\":\"10.21943\",\"type\":\"prefixes\"},{\"id\":\"10.21942\",\"type\":\"prefixes\"},{\"id\":\"10.70041\",\"type\":\"prefixes\"},{\"id\":\"10.80048\",\"type\":\"prefixes\"},{\"id\":\"10.80175\",\"type\":\"prefixes\"},{\"id\":\"10.80239\",\"type\":\"prefixes\"},{\"id\":\"10.80238\",\"type\":\"prefixes\"}]}}},{\"id\":\"ands\",\"type\":\"providers\",\"attributes\":{\"name\":\"Australian Research Data Commons\",\"displayName\":\"Australian Research Data Commons\",\"symbol\":\"ANDS\",\"website\":\"https://ardc.edu.au\",\"systemEmail\":\"services@ands.org.au\",\"groupEmail\":null,\"description\":\"The Australian National Data Service (ANDS) makes Australia's research data assets more valuable for researchers, research institutions and the nation.\\n\\nWe do this through working in trusted partnerships on research data projects, delivering reliable national services and enhancing the capability of Australia's research data system.\\n \\nA key ANDS service is the [Research Data Australia](http://researchdata.ands.org.au/) discovery portal where you can find, access and reuse Australian research data.\\n\\nANDS is a partnership led by Monash University, in collaboration with the Australian National University and CSIRO. It is funded by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).\\n \\nANDS involvement in the DataCite consortium ensures that we are active in global initiatives addressing the issues surrounding research data, including those of publication, citation and standards. ANDS has run its [Cite My Data](http://ands.org.au/services/cite-my-data.html) service since 2011. This service allows Australian research organisations to assign DOIs to their own research collections. This, in turn, provides researchers with a means of citing their published data and achieving recognition for their research data output.\\n \\nSubscribe to our discussion list: [ANDS Google Group](https://groups.google.com/forum/?hl=en#!forum/ands-general).\\n \\nSubscribe to our e-newsletter: [andsUP](http://us7.campaign-archive2.com/home/?u=b542ef52e49302569068046d9&id=22b849a4ee).\",\"region\":\"APAC\",\"country\":\"AU\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/038sjwq14\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T08:49:30.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"ands.test\",\"type\":\"clients\"},{\"id\":\"ands.centre-x\",\"type\":\"clients\"},{\"id\":\"ands.test-1\",\"type\":\"clients\"},{\"id\":\"ands.test-2\",\"type\":\"clients\"},{\"id\":\"ands.test-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-1\",\"type\":\"clients\"},{\"id\":\"ands.centre-2\",\"type\":\"clients\"},{\"id\":\"ands.centre-3\",\"type\":\"clients\"},{\"id\":\"ands.centre-4\",\"type\":\"clients\"},{\"id\":\"ands.centre-5\",\"type\":\"clients\"},{\"id\":\"ands.centre-6\",\"type\":\"clients\"},{\"id\":\"ands.centre-7\",\"type\":\"clients\"},{\"id\":\"ands.centre-8\",\"type\":\"clients\"},{\"id\":\"ands.centre-9\",\"type\":\"clients\"},{\"id\":\"ands.centre10\",\"type\":\"clients\"},{\"id\":\"ands.centre14\",\"type\":\"clients\"},{\"id\":\"ands.test-7\",\"type\":\"clients\"},{\"id\":\"ands.centre11\",\"type\":\"clients\"},{\"id\":\"ands.centre12\",\"type\":\"clients\"},{\"id\":\"ands.centre13\",\"type\":\"clients\"},{\"id\":\"ands.centre15\",\"type\":\"clients\"},{\"id\":\"ands.centre17\",\"type\":\"clients\"},{\"id\":\"ands.centre18\",\"type\":\"clients\"},{\"id\":\"ands.centre16\",\"type\":\"clients\"},{\"id\":\"ands.centre21\",\"type\":\"clients\"},{\"id\":\"ands.centre22\",\"type\":\"clients\"},{\"id\":\"ands.centre23\",\"type\":\"clients\"},{\"id\":\"ands.centre25\",\"type\":\"clients\"},{\"id\":\"ands.centre26\",\"type\":\"clients\"},{\"id\":\"ands.centre-0\",\"type\":\"clients\"},{\"id\":\"ands.test-21\",\"type\":\"clients\"},{\"id\":\"ands.centre28\",\"type\":\"clients\"},{\"id\":\"ands.centre35\",\"type\":\"clients\"},{\"id\":\"ands.centre37\",\"type\":\"clients\"},{\"id\":\"ands.centre39\",\"type\":\"clients\"},{\"id\":\"ands.centre41\",\"type\":\"clients\"},{\"id\":\"ands.centre42\",\"type\":\"clients\"},{\"id\":\"ands.centre43\",\"type\":\"clients\"},{\"id\":\"ands.centre44\",\"type\":\"clients\"},{\"id\":\"ands.centre47\",\"type\":\"clients\"},{\"id\":\"ands.centre49\",\"type\":\"clients\"},{\"id\":\"ands.centre50\",\"type\":\"clients\"},{\"id\":\"ands.centre48\",\"type\":\"clients\"},{\"id\":\"ands.centre51\",\"type\":\"clients\"},{\"id\":\"ands.centre52\",\"type\":\"clients\"},{\"id\":\"ands.centre53\",\"type\":\"clients\"},{\"id\":\"ands.centre55\",\"type\":\"clients\"},{\"id\":\"ands.centre57\",\"type\":\"clients\"},{\"id\":\"ands.centre59\",\"type\":\"clients\"},{\"id\":\"ands.centre61\",\"type\":\"clients\"},{\"id\":\"ands.centre62\",\"type\":\"clients\"},{\"id\":\"ands.centre64\",\"type\":\"clients\"},{\"id\":\"ands.centre65\",\"type\":\"clients\"},{\"id\":\"ands.centre66\",\"type\":\"clients\"},{\"id\":\"ands.centre68\",\"type\":\"clients\"},{\"id\":\"ands.centre69\",\"type\":\"clients\"},{\"id\":\"ands.centre71\",\"type\":\"clients\"},{\"id\":\"ands.centre72\",\"type\":\"clients\"},{\"id\":\"ands.centre75\",\"type\":\"clients\"},{\"id\":\"ands.centre77\",\"type\":\"clients\"},{\"id\":\"ands.centre78\",\"type\":\"clients\"},{\"id\":\"ands.centre80\",\"type\":\"clients\"},{\"id\":\"ands.centre86\",\"type\":\"clients\"},{\"id\":\"ands.centre87\",\"type\":\"clients\"},{\"id\":\"ands.centre90\",\"type\":\"clients\"},{\"id\":\"ands.c103\",\"type\":\"clients\"},{\"id\":\"ands.c112\",\"type\":\"clients\"},{\"id\":\"ands.c139\",\"type\":\"clients\"},{\"id\":\"ands.c114\",\"type\":\"clients\"},{\"id\":\"ands.c115\",\"type\":\"clients\"},{\"id\":\"ands.c116\",\"type\":\"clients\"},{\"id\":\"ands.c206\",\"type\":\"clients\"},{\"id\":\"ands.c447\",\"type\":\"clients\"},{\"id\":\"ands.c667\",\"type\":\"clients\"},{\"id\":\"ands.ct9\",\"type\":\"clients\"},{\"id\":\"ands.c1054\",\"type\":\"clients\"},{\"id\":\"ands.c1059\",\"type\":\"clients\"},{\"id\":\"ands.c1075\",\"type\":\"clients\"},{\"id\":\"ands.c1085\",\"type\":\"clients\"},{\"id\":\"ands.c1086\",\"type\":\"clients\"},{\"id\":\"ands.c1087\",\"type\":\"clients\"},{\"id\":\"ands.c1092\",\"type\":\"clients\"},{\"id\":\"ands.c178\",\"type\":\"clients\"},{\"id\":\"ands.c179\",\"type\":\"clients\"},{\"id\":\"ands.c182\",\"type\":\"clients\"},{\"id\":\"ands.c185\",\"type\":\"clients\"},{\"id\":\"ands.c186\",\"type\":\"clients\"},{\"id\":\"ands.c177\",\"type\":\"clients\"},{\"id\":\"ands.c188\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme\",\"type\":\"clients\"},{\"id\":\"ands.jbdeleteme2\",\"type\":\"clients\"},{\"id\":\"ands.c113\",\"type\":\"clients\"},{\"id\":\"ands.centre92\",\"type\":\"clients\"},{\"id\":\"ands.c175\",\"type\":\"clients\"},{\"id\":\"ands.c166\",\"type\":\"clients\"},{\"id\":\"ands.c145\",\"type\":\"clients\"},{\"id\":\"ands.c176\",\"type\":\"clients\"},{\"id\":\"ands.centre94\",\"type\":\"clients\"},{\"id\":\"ands.c122\",\"type\":\"clients\"},{\"id\":\"ands.c169\",\"type\":\"clients\"},{\"id\":\"ands.c133\",\"type\":\"clients\"},{\"id\":\"ands.c163\",\"type\":\"clients\"},{\"id\":\"ands.centre27\",\"type\":\"clients\"},{\"id\":\"ands.c171\",\"type\":\"clients\"},{\"id\":\"ands.centre95\",\"type\":\"clients\"},{\"id\":\"ands.c174\",\"type\":\"clients\"},{\"id\":\"ands.c195\",\"type\":\"clients\"},{\"id\":\"ands.c200\",\"type\":\"clients\"},{\"id\":\"ands.c202\",\"type\":\"clients\"},{\"id\":\"ands.c203\",\"type\":\"clients\"},{\"id\":\"ands.c172\",\"type\":\"clients\"},{\"id\":\"ands.c136\",\"type\":\"clients\"},{\"id\":\"ands.centre96\",\"type\":\"clients\"},{\"id\":\"ands.c253\",\"type\":\"clients\"},{\"id\":\"ands.c254\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4225\",\"type\":\"prefixes\"},{\"id\":\"10.4227\",\"type\":\"prefixes\"},{\"id\":\"10.4226\",\"type\":\"prefixes\"},{\"id\":\"10.24370\",\"type\":\"prefixes\"},{\"id\":\"10.24371\",\"type\":\"prefixes\"},{\"id\":\"10.24366\",\"type\":\"prefixes\"},{\"id\":\"10.24369\",\"type\":\"prefixes\"},{\"id\":\"10.24403\",\"type\":\"prefixes\"},{\"id\":\"10.24405\",\"type\":\"prefixes\"},{\"id\":\"10.24358\",\"type\":\"prefixes\"},{\"id\":\"10.24345\",\"type\":\"prefixes\"},{\"id\":\"10.24344\",\"type\":\"prefixes\"},{\"id\":\"10.24343\",\"type\":\"prefixes\"},{\"id\":\"10.24342\",\"type\":\"prefixes\"},{\"id\":\"10.24426\",\"type\":\"prefixes\"},{\"id\":\"10.24425\",\"type\":\"prefixes\"},{\"id\":\"10.24428\",\"type\":\"prefixes\"},{\"id\":\"10.24341\",\"type\":\"prefixes\"},{\"id\":\"10.24336\",\"type\":\"prefixes\"},{\"id\":\"10.24338\",\"type\":\"prefixes\"},{\"id\":\"10.24337\",\"type\":\"prefixes\"},{\"id\":\"10.24339\",\"type\":\"prefixes\"},{\"id\":\"10.24432\",\"type\":\"prefixes\"},{\"id\":\"10.24433\",\"type\":\"prefixes\"},{\"id\":\"10.24430\",\"type\":\"prefixes\"},{\"id\":\"10.24398\",\"type\":\"prefixes\"},{\"id\":\"10.70000\",\"type\":\"prefixes\"},{\"id\":\"10.70004\",\"type\":\"prefixes\"},{\"id\":\"10.70005\",\"type\":\"prefixes\"},{\"id\":\"10.70006\",\"type\":\"prefixes\"},{\"id\":\"10.70007\",\"type\":\"prefixes\"},{\"id\":\"10.70008\",\"type\":\"prefixes\"},{\"id\":\"10.70009\",\"type\":\"prefixes\"},{\"id\":\"10.70010\",\"type\":\"prefixes\"},{\"id\":\"10.70011\",\"type\":\"prefixes\"},{\"id\":\"10.70030\",\"type\":\"prefixes\"},{\"id\":\"10.33533\",\"type\":\"prefixes\"},{\"id\":\"10.33527\",\"type\":\"prefixes\"},{\"id\":\"10.33534\",\"type\":\"prefixes\"},{\"id\":\"10.33535\",\"type\":\"prefixes\"},{\"id\":\"10.33568\",\"type\":\"prefixes\"},{\"id\":\"10.33580\",\"type\":\"prefixes\"},{\"id\":\"10.33589\",\"type\":\"prefixes\"},{\"id\":\"10.33630\",\"type\":\"prefixes\"},{\"id\":\"10.33628\",\"type\":\"prefixes\"},{\"id\":\"10.33625\",\"type\":\"prefixes\"},{\"id\":\"10.33636\",\"type\":\"prefixes\"},{\"id\":\"10.33644\",\"type\":\"prefixes\"},{\"id\":\"10.33635\",\"type\":\"prefixes\"},{\"id\":\"10.33626\",\"type\":\"prefixes\"},{\"id\":\"10.33653\",\"type\":\"prefixes\"},{\"id\":\"10.33654\",\"type\":\"prefixes\"},{\"id\":\"10.33656\",\"type\":\"prefixes\"},{\"id\":\"10.33658\",\"type\":\"prefixes\"},{\"id\":\"10.33661\",\"type\":\"prefixes\"},{\"id\":\"10.33660\",\"type\":\"prefixes\"},{\"id\":\"10.33679\",\"type\":\"prefixes\"},{\"id\":\"10.33681\",\"type\":\"prefixes\"},{\"id\":\"10.33680\",\"type\":\"prefixes\"},{\"id\":\"10.33685\",\"type\":\"prefixes\"},{\"id\":\"10.33687\",\"type\":\"prefixes\"},{\"id\":\"10.33684\",\"type\":\"prefixes\"},{\"id\":\"10.33690\",\"type\":\"prefixes\"},{\"id\":\"10.70123\",\"type\":\"prefixes\"},{\"id\":\"10.70140\",\"type\":\"prefixes\"},{\"id\":\"10.70130\",\"type\":\"prefixes\"},{\"id\":\"10.70132\",\"type\":\"prefixes\"},{\"id\":\"10.70131\",\"type\":\"prefixes\"},{\"id\":\"10.70149\",\"type\":\"prefixes\"},{\"id\":\"10.70148\",\"type\":\"prefixes\"},{\"id\":\"10.70147\",\"type\":\"prefixes\"},{\"id\":\"10.70133\",\"type\":\"prefixes\"},{\"id\":\"10.70134\",\"type\":\"prefixes\"},{\"id\":\"10.70135\",\"type\":\"prefixes\"},{\"id\":\"10.70138\",\"type\":\"prefixes\"},{\"id\":\"10.70141\",\"type\":\"prefixes\"},{\"id\":\"10.70142\",\"type\":\"prefixes\"},{\"id\":\"10.70137\",\"type\":\"prefixes\"},{\"id\":\"10.70136\",\"type\":\"prefixes\"},{\"id\":\"10.70144\",\"type\":\"prefixes\"},{\"id\":\"10.70143\",\"type\":\"prefixes\"},{\"id\":\"10.70146\",\"type\":\"prefixes\"},{\"id\":\"10.70145\",\"type\":\"prefixes\"},{\"id\":\"10.80337\",\"type\":\"prefixes\"},{\"id\":\"10.80336\",\"type\":\"prefixes\"},{\"id\":\"10.80334\",\"type\":\"prefixes\"},{\"id\":\"10.80338\",\"type\":\"prefixes\"},{\"id\":\"10.80364\",\"type\":\"prefixes\"},{\"id\":\"10.80341\",\"type\":\"prefixes\"},{\"id\":\"10.80340\",\"type\":\"prefixes\"},{\"id\":\"10.80372\",\"type\":\"prefixes\"},{\"id\":\"10.80343\",\"type\":\"prefixes\"},{\"id\":\"10.80345\",\"type\":\"prefixes\"},{\"id\":\"10.80350\",\"type\":\"prefixes\"},{\"id\":\"10.80354\",\"type\":\"prefixes\"},{\"id\":\"10.80362\",\"type\":\"prefixes\"},{\"id\":\"10.80360\",\"type\":\"prefixes\"},{\"id\":\"10.80368\",\"type\":\"prefixes\"},{\"id\":\"10.80373\",\"type\":\"prefixes\"},{\"id\":\"10.80378\",\"type\":\"prefixes\"},{\"id\":\"10.80370\",\"type\":\"prefixes\"},{\"id\":\"10.80380\",\"type\":\"prefixes\"},{\"id\":\"10.80382\",\"type\":\"prefixes\"},{\"id\":\"10.80388\",\"type\":\"prefixes\"},{\"id\":\"10.80390\",\"type\":\"prefixes\"},{\"id\":\"10.80392\",\"type\":\"prefixes\"},{\"id\":\"10.80394\",\"type\":\"prefixes\"},{\"id\":\"10.80398\",\"type\":\"prefixes\"},{\"id\":\"10.80367\",\"type\":\"prefixes\"},{\"id\":\"10.80339\",\"type\":\"prefixes\"},{\"id\":\"10.80344\",\"type\":\"prefixes\"},{\"id\":\"10.80346\",\"type\":\"prefixes\"},{\"id\":\"10.80347\",\"type\":\"prefixes\"},{\"id\":\"10.80351\",\"type\":\"prefixes\"},{\"id\":\"10.80355\",\"type\":\"prefixes\"},{\"id\":\"10.80359\",\"type\":\"prefixes\"},{\"id\":\"10.80361\",\"type\":\"prefixes\"},{\"id\":\"10.80363\",\"type\":\"prefixes\"},{\"id\":\"10.80366\",\"type\":\"prefixes\"},{\"id\":\"10.80369\",\"type\":\"prefixes\"},{\"id\":\"10.80371\",\"type\":\"prefixes\"},{\"id\":\"10.80379\",\"type\":\"prefixes\"},{\"id\":\"10.80381\",\"type\":\"prefixes\"},{\"id\":\"10.80383\",\"type\":\"prefixes\"},{\"id\":\"10.80385\",\"type\":\"prefixes\"},{\"id\":\"10.80387\",\"type\":\"prefixes\"},{\"id\":\"10.80377\",\"type\":\"prefixes\"},{\"id\":\"10.80393\",\"type\":\"prefixes\"},{\"id\":\"10.80395\",\"type\":\"prefixes\"},{\"id\":\"10.80397\",\"type\":\"prefixes\"},{\"id\":\"10.80501\",\"type\":\"prefixes\"}]}}},{\"id\":\"dk\",\"type\":\"providers\",\"attributes\":{\"name\":\"Danish e-Infrastructure Cooperation\",\"displayName\":\"Danish e-Infrastructure Cooperation (DeiC)\",\"symbol\":\"DK\",\"website\":null,\"systemEmail\":\"datacite@deic.dk\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:27:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dk.bk\",\"type\":\"clients\"},{\"id\":\"dk.aau\",\"type\":\"clients\"},{\"id\":\"dk.sa\",\"type\":\"clients\"},{\"id\":\"dk.misc\",\"type\":\"clients\"},{\"id\":\"dk.openaire\",\"type\":\"clients\"},{\"id\":\"dk.nfa\",\"type\":\"clients\"},{\"id\":\"dk.gbif\",\"type\":\"clients\"},{\"id\":\"dk.uninett\",\"type\":\"clients\"},{\"id\":\"dk.uit\",\"type\":\"clients\"},{\"id\":\"dk.ku\",\"type\":\"clients\"},{\"id\":\"dk.gbif-es\",\"type\":\"clients\"},{\"id\":\"dk.gbif-co\",\"type\":\"clients\"},{\"id\":\"dk.ices\",\"type\":\"clients\"},{\"id\":\"dk.ucn\",\"type\":\"clients\"},{\"id\":\"dk.sb\",\"type\":\"clients\"},{\"id\":\"dk.test\",\"type\":\"clients\"},{\"id\":\"dk.sdub\",\"type\":\"clients\"},{\"id\":\"dk.dtu\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4122\",\"type\":\"prefixes\"},{\"id\":\"10.5278\",\"type\":\"prefixes\"},{\"id\":\"10.5279\",\"type\":\"prefixes\"},{\"id\":\"10.5280\",\"type\":\"prefixes\"},{\"id\":\"10.5281\",\"type\":\"prefixes\"},{\"id\":\"10.11580\",\"type\":\"prefixes\"},{\"id\":\"10.11581\",\"type\":\"prefixes\"},{\"id\":\"10.11582\",\"type\":\"prefixes\"},{\"id\":\"10.11583\",\"type\":\"prefixes\"},{\"id\":\"10.15472\",\"type\":\"prefixes\"},{\"id\":\"10.15471\",\"type\":\"prefixes\"},{\"id\":\"10.15470\",\"type\":\"prefixes\"},{\"id\":\"10.15469\",\"type\":\"prefixes\"},{\"id\":\"10.15468\",\"type\":\"prefixes\"},{\"id\":\"10.17897\",\"type\":\"prefixes\"},{\"id\":\"10.17896\",\"type\":\"prefixes\"},{\"id\":\"10.17893\",\"type\":\"prefixes\"},{\"id\":\"10.17894\",\"type\":\"prefixes\"},{\"id\":\"10.17895\",\"type\":\"prefixes\"},{\"id\":\"10.22006\",\"type\":\"prefixes\"},{\"id\":\"10.22007\",\"type\":\"prefixes\"},{\"id\":\"10.22008\",\"type\":\"prefixes\"},{\"id\":\"10.21993\",\"type\":\"prefixes\"},{\"id\":\"10.21994\",\"type\":\"prefixes\"},{\"id\":\"10.21995\",\"type\":\"prefixes\"},{\"id\":\"10.21996\",\"type\":\"prefixes\"},{\"id\":\"10.21997\",\"type\":\"prefixes\"},{\"id\":\"10.21998\",\"type\":\"prefixes\"},{\"id\":\"10.21999\",\"type\":\"prefixes\"}]}}},{\"id\":\"cdl\",\"type\":\"providers\",\"attributes\":{\"name\":\"California Digital Library\",\"displayName\":\"California Digital Library\",\"symbol\":\"CDL\",\"website\":null,\"systemEmail\":\"gjanee@ucop.edu\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"US\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/data.png?1583232274\",\"memberType\":\"direct_member\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T10:44:34.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"cdl.cdl\",\"type\":\"clients\"},{\"id\":\"cdl.qdr\",\"type\":\"clients\"},{\"id\":\"cdl.nceas\",\"type\":\"clients\"},{\"id\":\"cdl.ucsb\",\"type\":\"clients\"},{\"id\":\"cdl.ncar\",\"type\":\"clients\"},{\"id\":\"cdl.usgs\",\"type\":\"clients\"},{\"id\":\"cdl.ornl\",\"type\":\"clients\"},{\"id\":\"cdl.ucla\",\"type\":\"clients\"},{\"id\":\"cdl.nasagsfc\",\"type\":\"clients\"},{\"id\":\"cdl.sdscot\",\"type\":\"clients\"},{\"id\":\"cdl.digant\",\"type\":\"clients\"},{\"id\":\"cdl.dplanet\",\"type\":\"clients\"},{\"id\":\"cdl.labarch\",\"type\":\"clients\"},{\"id\":\"cdl.uwl\",\"type\":\"clients\"},{\"id\":\"cdl.ucm\",\"type\":\"clients\"},{\"id\":\"cdl.sdscsg\",\"type\":\"clients\"},{\"id\":\"cdl.lternet\",\"type\":\"clients\"},{\"id\":\"cdl.aas\",\"type\":\"clients\"},{\"id\":\"cdl.fhcrc\",\"type\":\"clients\"},{\"id\":\"cdl.ciser\",\"type\":\"clients\"},{\"id\":\"cdl.ucb\",\"type\":\"clients\"},{\"id\":\"cdl.uclaeeb\",\"type\":\"clients\"},{\"id\":\"cdl.ucsd\",\"type\":\"clients\"},{\"id\":\"cdl.ucbcrcns\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdbio\",\"type\":\"clients\"},{\"id\":\"cdl.uchig\",\"type\":\"clients\"},{\"id\":\"cdl.ohsu\",\"type\":\"clients\"},{\"id\":\"cdl.foo\",\"type\":\"clients\"},{\"id\":\"cdl.bar\",\"type\":\"clients\"},{\"id\":\"cdl.bar2\",\"type\":\"clients\"},{\"id\":\"cdl.bar3\",\"type\":\"clients\"},{\"id\":\"cdl.test\",\"type\":\"clients\"},{\"id\":\"cdl.digsci\",\"type\":\"clients\"},{\"id\":\"cdl.pisco\",\"type\":\"clients\"},{\"id\":\"cdl.ucr\",\"type\":\"clients\"},{\"id\":\"cdl.uoregon\",\"type\":\"clients\"},{\"id\":\"cdl.nsidc\",\"type\":\"clients\"},{\"id\":\"cdl.hri\",\"type\":\"clients\"},{\"id\":\"cdl.osu\",\"type\":\"clients\"},{\"id\":\"cdl.esip\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdcca\",\"type\":\"clients\"},{\"id\":\"cdl.ucrbcoe\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdsspp\",\"type\":\"clients\"},{\"id\":\"cdl.ucsflib\",\"type\":\"clients\"},{\"id\":\"cdl.ucsfctsi\",\"type\":\"clients\"},{\"id\":\"cdl.wsu\",\"type\":\"clients\"},{\"id\":\"cdl.uma\",\"type\":\"clients\"},{\"id\":\"cdl.uwcsde\",\"type\":\"clients\"},{\"id\":\"cdl.uutah\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdooi\",\"type\":\"clients\"},{\"id\":\"cdl.uci\",\"type\":\"clients\"},{\"id\":\"cdl.jhu\",\"type\":\"clients\"},{\"id\":\"cdl.rutgers\",\"type\":\"clients\"},{\"id\":\"cdl.unavco\",\"type\":\"clients\"},{\"id\":\"cdl.r2r\",\"type\":\"clients\"},{\"id\":\"cdl.cmmap\",\"type\":\"clients\"},{\"id\":\"cdl.biocode\",\"type\":\"clients\"},{\"id\":\"cdl.peerj\",\"type\":\"clients\"},{\"id\":\"cdl.earthref\",\"type\":\"clients\"},{\"id\":\"cdl.noaa\",\"type\":\"clients\"},{\"id\":\"cdl.utenn\",\"type\":\"clients\"},{\"id\":\"cdl.ucsc\",\"type\":\"clients\"},{\"id\":\"cdl.baer\",\"type\":\"clients\"},{\"id\":\"cdl.benchfly\",\"type\":\"clients\"},{\"id\":\"cdl.vtlib\",\"type\":\"clients\"},{\"id\":\"cdl.dryad\",\"type\":\"clients\"},{\"id\":\"cdl.rcidc\",\"type\":\"clients\"},{\"id\":\"cdl.crbs\",\"type\":\"clients\"},{\"id\":\"cdl.elrap\",\"type\":\"clients\"},{\"id\":\"cdl.ucbling\",\"type\":\"clients\"},{\"id\":\"cdl.cul\",\"type\":\"clients\"},{\"id\":\"cdl.ucbmvz\",\"type\":\"clients\"},{\"id\":\"cdl.bul\",\"type\":\"clients\"},{\"id\":\"cdl.onelab\",\"type\":\"clients\"},{\"id\":\"cdl.sagebio\",\"type\":\"clients\"},{\"id\":\"cdl.caltech\",\"type\":\"clients\"},{\"id\":\"cdl.broad\",\"type\":\"clients\"},{\"id\":\"cdl.seismola\",\"type\":\"clients\"},{\"id\":\"cdl.oneocean\",\"type\":\"clients\"},{\"id\":\"cdl.iupui\",\"type\":\"clients\"},{\"id\":\"cdl.uwesci\",\"type\":\"clients\"},{\"id\":\"cdl.iris\",\"type\":\"clients\"},{\"id\":\"cdl.uwcig\",\"type\":\"clients\"},{\"id\":\"cdl.culis\",\"type\":\"clients\"},{\"id\":\"cdl.nccs\",\"type\":\"clients\"},{\"id\":\"cdl.ucsbagl\",\"type\":\"clients\"},{\"id\":\"cdl.cams\",\"type\":\"clients\"},{\"id\":\"cdl.renci\",\"type\":\"clients\"},{\"id\":\"cdl.ucbits\",\"type\":\"clients\"},{\"id\":\"cdl.nkn\",\"type\":\"clients\"},{\"id\":\"cdl.dul\",\"type\":\"clients\"},{\"id\":\"cdl.ucdirl\",\"type\":\"clients\"},{\"id\":\"cdl.mdy\",\"type\":\"clients\"},{\"id\":\"cdl.ciesin\",\"type\":\"clients\"},{\"id\":\"cdl.ucbrit\",\"type\":\"clients\"},{\"id\":\"cdl.issda\",\"type\":\"clients\"},{\"id\":\"cdl.usgcrp\",\"type\":\"clients\"},{\"id\":\"cdl.lcrnz\",\"type\":\"clients\"},{\"id\":\"cdl.bsl\",\"type\":\"clients\"},{\"id\":\"cdl.laleumbc\",\"type\":\"clients\"},{\"id\":\"cdl.morphoba\",\"type\":\"clients\"},{\"id\":\"cdl.ligo\",\"type\":\"clients\"},{\"id\":\"cdl.wustl\",\"type\":\"clients\"},{\"id\":\"cdl.tcia\",\"type\":\"clients\"},{\"id\":\"cdl.statsrc\",\"type\":\"clients\"},{\"id\":\"cdl.ual\",\"type\":\"clients\"},{\"id\":\"cdl.writpro\",\"type\":\"clients\"},{\"id\":\"cdl.lbnl\",\"type\":\"clients\"},{\"id\":\"cdl.cchdo\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlomsi\",\"type\":\"clients\"},{\"id\":\"cdl.usfws\",\"type\":\"clients\"},{\"id\":\"cdl.iplant\",\"type\":\"clients\"},{\"id\":\"cdl.cmu\",\"type\":\"clients\"},{\"id\":\"cdl.noaa-gmd\",\"type\":\"clients\"},{\"id\":\"cdl.odumunc\",\"type\":\"clients\"},{\"id\":\"cdl.ucdavis\",\"type\":\"clients\"},{\"id\":\"cdl.ucd-ssds\",\"type\":\"clients\"},{\"id\":\"cdl.usu\",\"type\":\"clients\"},{\"id\":\"cdl.acsess\",\"type\":\"clients\"},{\"id\":\"cdl.crcl\",\"type\":\"clients\"},{\"id\":\"cdl.unmlib\",\"type\":\"clients\"},{\"id\":\"cdl.idashrep\",\"type\":\"clients\"},{\"id\":\"cdl.gmu\",\"type\":\"clients\"},{\"id\":\"cdl.datamare\",\"type\":\"clients\"},{\"id\":\"cdl.uky\",\"type\":\"clients\"},{\"id\":\"cdl.ocontext\",\"type\":\"clients\"},{\"id\":\"cdl.eschol\",\"type\":\"clients\"},{\"id\":\"cdl.dartlib\",\"type\":\"clients\"},{\"id\":\"cdl.nuigal\",\"type\":\"clients\"},{\"id\":\"cdl.mitlcp\",\"type\":\"clients\"},{\"id\":\"cdl.mbfbio\",\"type\":\"clients\"},{\"id\":\"cdl.umwlsl\",\"type\":\"clients\"},{\"id\":\"cdl.ucblawlb\",\"type\":\"clients\"},{\"id\":\"cdl.sbgeog\",\"type\":\"clients\"},{\"id\":\"cdl.utaustin\",\"type\":\"clients\"},{\"id\":\"cdl.d3r\",\"type\":\"clients\"},{\"id\":\"cdl.crawdad\",\"type\":\"clients\"},{\"id\":\"cdl.ieda\",\"type\":\"clients\"},{\"id\":\"cdl.sbgrid\",\"type\":\"clients\"},{\"id\":\"cdl.uwyo\",\"type\":\"clients\"},{\"id\":\"cdl.vtti\",\"type\":\"clients\"},{\"id\":\"cdl.msu\",\"type\":\"clients\"},{\"id\":\"cdl.fdsn\",\"type\":\"clients\"},{\"id\":\"cdl.morphoso\",\"type\":\"clients\"},{\"id\":\"cdl.tacc\",\"type\":\"clients\"},{\"id\":\"cdl.umiami\",\"type\":\"clients\"},{\"id\":\"cdl.cos\",\"type\":\"clients\"},{\"id\":\"cdl.aul\",\"type\":\"clients\"},{\"id\":\"cdl.uoa\",\"type\":\"clients\"},{\"id\":\"cdl.ica\",\"type\":\"clients\"},{\"id\":\"cdl.nyu\",\"type\":\"clients\"},{\"id\":\"cdl.pgerr\",\"type\":\"clients\"},{\"id\":\"cdl.mla\",\"type\":\"clients\"},{\"id\":\"cdl.pqr\",\"type\":\"clients\"},{\"id\":\"cdl.libunc\",\"type\":\"clients\"},{\"id\":\"cdl.re3data\",\"type\":\"clients\"},{\"id\":\"cdl.dbmicld\",\"type\":\"clients\"},{\"id\":\"cdl.stsci\",\"type\":\"clients\"},{\"id\":\"cdl.databrar\",\"type\":\"clients\"},{\"id\":\"cdl.uwisolab\",\"type\":\"clients\"},{\"id\":\"cdl.wormbase\",\"type\":\"clients\"},{\"id\":\"cdl.regenbas\",\"type\":\"clients\"},{\"id\":\"cdl.seu\",\"type\":\"clients\"},{\"id\":\"cdl.cns\",\"type\":\"clients\"},{\"id\":\"cdl.icis\",\"type\":\"clients\"},{\"id\":\"cdl.drxldata\",\"type\":\"clients\"},{\"id\":\"cdl.pubref\",\"type\":\"clients\"},{\"id\":\"cdl.openfmri\",\"type\":\"clients\"},{\"id\":\"cdl.lucklab\",\"type\":\"clients\"},{\"id\":\"cdl.pitt\",\"type\":\"clients\"},{\"id\":\"cdl.ummscand\",\"type\":\"clients\"},{\"id\":\"cdl.geer\",\"type\":\"clients\"},{\"id\":\"cdl.facebase\",\"type\":\"clients\"},{\"id\":\"cdl.isrd\",\"type\":\"clients\"},{\"id\":\"cdl.boisesta\",\"type\":\"clients\"},{\"id\":\"cdl.datactr1\",\"type\":\"clients\"},{\"id\":\"cdl.datactr3\",\"type\":\"clients\"},{\"id\":\"cdl.datactr2\",\"type\":\"clients\"},{\"id\":\"cdl.lcc\",\"type\":\"clients\"},{\"id\":\"cdl.aep\",\"type\":\"clients\"},{\"id\":\"cdl.globus\",\"type\":\"clients\"},{\"id\":\"cdl.uva\",\"type\":\"clients\"},{\"id\":\"cdl.minorlab\",\"type\":\"clients\"},{\"id\":\"cdl.eaei\",\"type\":\"clients\"},{\"id\":\"cdl.arijourn\",\"type\":\"clients\"},{\"id\":\"cdl.jppsjour\",\"type\":\"clients\"},{\"id\":\"cdl.vampjour\",\"type\":\"clients\"},{\"id\":\"cdl.sccoos\",\"type\":\"clients\"},{\"id\":\"cdl.cdip\",\"type\":\"clients\"},{\"id\":\"cdl.eblipjou\",\"type\":\"clients\"},{\"id\":\"cdl.nist\",\"type\":\"clients\"},{\"id\":\"cdl.ogc\",\"type\":\"clients\"},{\"id\":\"cdl.hssajour\",\"type\":\"clients\"},{\"id\":\"cdl.cpijourn\",\"type\":\"clients\"},{\"id\":\"cdl.lbnljcap\",\"type\":\"clients\"},{\"id\":\"cdl.simtk\",\"type\":\"clients\"},{\"id\":\"cdl.lafcolli\",\"type\":\"clients\"},{\"id\":\"cdl.emu\",\"type\":\"clients\"},{\"id\":\"cdl.tdl\",\"type\":\"clients\"},{\"id\":\"cdl.nsfadc\",\"type\":\"clients\"},{\"id\":\"cdl.ssjourna\",\"type\":\"clients\"},{\"id\":\"cdl.pcoejour\",\"type\":\"clients\"},{\"id\":\"cdl.uclacee\",\"type\":\"clients\"},{\"id\":\"cdl.ucolick\",\"type\":\"clients\"},{\"id\":\"cdl.ucbbls\",\"type\":\"clients\"},{\"id\":\"cdl.sdsulib\",\"type\":\"clients\"},{\"id\":\"cdl.lbnlcesd\",\"type\":\"clients\"},{\"id\":\"cdl.wmlib\",\"type\":\"clients\"},{\"id\":\"cdl.sdsucs\",\"type\":\"clients\"},{\"id\":\"cdl.orcid\",\"type\":\"clients\"},{\"id\":\"cdl.cip\",\"type\":\"clients\"},{\"id\":\"cdl.sep\",\"type\":\"clients\"},{\"id\":\"cdl.dtic\",\"type\":\"clients\"},{\"id\":\"cdl.invemar\",\"type\":\"clients\"},{\"id\":\"cdl.siue\",\"type\":\"clients\"},{\"id\":\"cdl.adaptive\",\"type\":\"clients\"},{\"id\":\"cdl.uwb\",\"type\":\"clients\"},{\"id\":\"cdl.vmc\",\"type\":\"clients\"},{\"id\":\"cdl.gns\",\"type\":\"clients\"},{\"id\":\"cdl.icrisat\",\"type\":\"clients\"},{\"id\":\"cdl.tamul\",\"type\":\"clients\"},{\"id\":\"cdl.eri\",\"type\":\"clients\"},{\"id\":\"cdl.dit\",\"type\":\"clients\"},{\"id\":\"cdl.pub\",\"type\":\"clients\"},{\"id\":\"cdl.csc\",\"type\":\"clients\"},{\"id\":\"cdl.immport\",\"type\":\"clients\"},{\"id\":\"cdl.upennlib\",\"type\":\"clients\"},{\"id\":\"cdl.ucnrs\",\"type\":\"clients\"},{\"id\":\"cdl.vcu\",\"type\":\"clients\"},{\"id\":\"cdl.ucsdhlab\",\"type\":\"clients\"},{\"id\":\"cdl.caspo\",\"type\":\"clients\"},{\"id\":\"cdl.dmphub\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5060\",\"type\":\"prefixes\"},{\"id\":\"10.5061\",\"type\":\"prefixes\"},{\"id\":\"10.5062\",\"type\":\"prefixes\"},{\"id\":\"10.5063\",\"type\":\"prefixes\"},{\"id\":\"10.5064\",\"type\":\"prefixes\"},{\"id\":\"10.5065\",\"type\":\"prefixes\"},{\"id\":\"10.5066\",\"type\":\"prefixes\"},{\"id\":\"10.5067\",\"type\":\"prefixes\"},{\"id\":\"10.5068\",\"type\":\"prefixes\"},{\"id\":\"10.5069\",\"type\":\"prefixes\"},{\"id\":\"10.5070\",\"type\":\"prefixes\"},{\"id\":\"10.6067\",\"type\":\"prefixes\"},{\"id\":\"10.6068\",\"type\":\"prefixes\"},{\"id\":\"10.6069\",\"type\":\"prefixes\"},{\"id\":\"10.6070\",\"type\":\"prefixes\"},{\"id\":\"10.6071\",\"type\":\"prefixes\"},{\"id\":\"10.6072\",\"type\":\"prefixes\"},{\"id\":\"10.6073\",\"type\":\"prefixes\"},{\"id\":\"10.6074\",\"type\":\"prefixes\"},{\"id\":\"10.6075\",\"type\":\"prefixes\"},{\"id\":\"10.6076\",\"type\":\"prefixes\"},{\"id\":\"10.6077\",\"type\":\"prefixes\"},{\"id\":\"10.6078\",\"type\":\"prefixes\"},{\"id\":\"10.6079\",\"type\":\"prefixes\"},{\"id\":\"10.6080\",\"type\":\"prefixes\"},{\"id\":\"10.6081\",\"type\":\"prefixes\"},{\"id\":\"10.6082\",\"type\":\"prefixes\"},{\"id\":\"10.6083\",\"type\":\"prefixes\"},{\"id\":\"10.6084\",\"type\":\"prefixes\"},{\"id\":\"10.6085\",\"type\":\"prefixes\"},{\"id\":\"10.6086\",\"type\":\"prefixes\"},{\"id\":\"10.3334\",\"type\":\"prefixes\"},{\"id\":\"10.7264\",\"type\":\"prefixes\"},{\"id\":\"10.7265\",\"type\":\"prefixes\"},{\"id\":\"10.7266\",\"type\":\"prefixes\"},{\"id\":\"10.7267\",\"type\":\"prefixes\"},{\"id\":\"10.7268\",\"type\":\"prefixes\"},{\"id\":\"10.7269\",\"type\":\"prefixes\"},{\"id\":\"10.7270\",\"type\":\"prefixes\"},{\"id\":\"10.7271\",\"type\":\"prefixes\"},{\"id\":\"10.7272\",\"type\":\"prefixes\"},{\"id\":\"10.7273\",\"type\":\"prefixes\"},{\"id\":\"10.7274\",\"type\":\"prefixes\"},{\"id\":\"10.7275\",\"type\":\"prefixes\"},{\"id\":\"10.7276\",\"type\":\"prefixes\"},{\"id\":\"10.7277\",\"type\":\"prefixes\"},{\"id\":\"10.7278\",\"type\":\"prefixes\"},{\"id\":\"10.7279\",\"type\":\"prefixes\"},{\"id\":\"10.7280\",\"type\":\"prefixes\"},{\"id\":\"10.7281\",\"type\":\"prefixes\"},{\"id\":\"10.7282\",\"type\":\"prefixes\"},{\"id\":\"10.7283\",\"type\":\"prefixes\"},{\"id\":\"10.7284\",\"type\":\"prefixes\"},{\"id\":\"10.7285\",\"type\":\"prefixes\"},{\"id\":\"10.7286\",\"type\":\"prefixes\"},{\"id\":\"10.7287\",\"type\":\"prefixes\"},{\"id\":\"10.7288\",\"type\":\"prefixes\"},{\"id\":\"10.7289\",\"type\":\"prefixes\"},{\"id\":\"10.7290\",\"type\":\"prefixes\"},{\"id\":\"10.7291\",\"type\":\"prefixes\"},{\"id\":\"10.7292\",\"type\":\"prefixes\"},{\"id\":\"10.7293\",\"type\":\"prefixes\"},{\"id\":\"10.7294\",\"type\":\"prefixes\"},{\"id\":\"10.7295\",\"type\":\"prefixes\"},{\"id\":\"10.7296\",\"type\":\"prefixes\"},{\"id\":\"10.7297\",\"type\":\"prefixes\"},{\"id\":\"10.7298\",\"type\":\"prefixes\"},{\"id\":\"10.7299\",\"type\":\"prefixes\"},{\"id\":\"10.7300\",\"type\":\"prefixes\"},{\"id\":\"10.7301\",\"type\":\"prefixes\"},{\"id\":\"10.7302\",\"type\":\"prefixes\"},{\"id\":\"10.7303\",\"type\":\"prefixes\"},{\"id\":\"10.4246\",\"type\":\"prefixes\"},{\"id\":\"10.7907\",\"type\":\"prefixes\"},{\"id\":\"10.7908\",\"type\":\"prefixes\"},{\"id\":\"10.7909\",\"type\":\"prefixes\"},{\"id\":\"10.7910\",\"type\":\"prefixes\"},{\"id\":\"10.7911\",\"type\":\"prefixes\"},{\"id\":\"10.7912\",\"type\":\"prefixes\"},{\"id\":\"10.7913\",\"type\":\"prefixes\"},{\"id\":\"10.7914\",\"type\":\"prefixes\"},{\"id\":\"10.7915\",\"type\":\"prefixes\"},{\"id\":\"10.7916\",\"type\":\"prefixes\"},{\"id\":\"10.7917\",\"type\":\"prefixes\"},{\"id\":\"10.7918\",\"type\":\"prefixes\"},{\"id\":\"10.7919\",\"type\":\"prefixes\"},{\"id\":\"10.7920\",\"type\":\"prefixes\"},{\"id\":\"10.7921\",\"type\":\"prefixes\"},{\"id\":\"10.7922\",\"type\":\"prefixes\"},{\"id\":\"10.7923\",\"type\":\"prefixes\"},{\"id\":\"10.7924\",\"type\":\"prefixes\"},{\"id\":\"10.7925\",\"type\":\"prefixes\"},{\"id\":\"10.7926\",\"type\":\"prefixes\"},{\"id\":\"10.7927\",\"type\":\"prefixes\"},{\"id\":\"10.7928\",\"type\":\"prefixes\"},{\"id\":\"10.7929\",\"type\":\"prefixes\"},{\"id\":\"10.7930\",\"type\":\"prefixes\"},{\"id\":\"10.7931\",\"type\":\"prefixes\"},{\"id\":\"10.7932\",\"type\":\"prefixes\"},{\"id\":\"10.7933\",\"type\":\"prefixes\"},{\"id\":\"10.7934\",\"type\":\"prefixes\"},{\"id\":\"10.7935\",\"type\":\"prefixes\"},{\"id\":\"10.7936\",\"type\":\"prefixes\"},{\"id\":\"10.7937\",\"type\":\"prefixes\"},{\"id\":\"10.7938\",\"type\":\"prefixes\"},{\"id\":\"10.7939\",\"type\":\"prefixes\"},{\"id\":\"10.7940\",\"type\":\"prefixes\"},{\"id\":\"10.7941\",\"type\":\"prefixes\"},{\"id\":\"10.7942\",\"type\":\"prefixes\"},{\"id\":\"10.7943\",\"type\":\"prefixes\"},{\"id\":\"10.7944\",\"type\":\"prefixes\"},{\"id\":\"10.7945\",\"type\":\"prefixes\"},{\"id\":\"10.7946\",\"type\":\"prefixes\"},{\"id\":\"10.13022\",\"type\":\"prefixes\"},{\"id\":\"10.13021\",\"type\":\"prefixes\"},{\"id\":\"10.13026\",\"type\":\"prefixes\"},{\"id\":\"10.13025\",\"type\":\"prefixes\"},{\"id\":\"10.13024\",\"type\":\"prefixes\"},{\"id\":\"10.13023\",\"type\":\"prefixes\"},{\"id\":\"10.13028\",\"type\":\"prefixes\"},{\"id\":\"10.13027\",\"type\":\"prefixes\"},{\"id\":\"10.13018\",\"type\":\"prefixes\"},{\"id\":\"10.15147\",\"type\":\"prefixes\"},{\"id\":\"10.15146\",\"type\":\"prefixes\"},{\"id\":\"10.15142\",\"type\":\"prefixes\"},{\"id\":\"10.15143\",\"type\":\"prefixes\"},{\"id\":\"10.15144\",\"type\":\"prefixes\"},{\"id\":\"10.15145\",\"type\":\"prefixes\"},{\"id\":\"10.15140\",\"type\":\"prefixes\"},{\"id\":\"10.15141\",\"type\":\"prefixes\"},{\"id\":\"10.15139\",\"type\":\"prefixes\"},{\"id\":\"10.15138\",\"type\":\"prefixes\"},{\"id\":\"10.1184\",\"type\":\"prefixes\"},{\"id\":\"10.15788\",\"type\":\"prefixes\"},{\"id\":\"10.15787\",\"type\":\"prefixes\"},{\"id\":\"10.15786\",\"type\":\"prefixes\"},{\"id\":\"10.15785\",\"type\":\"prefixes\"},{\"id\":\"10.15784\",\"type\":\"prefixes\"},{\"id\":\"10.15779\",\"type\":\"prefixes\"},{\"id\":\"10.15780\",\"type\":\"prefixes\"},{\"id\":\"10.15781\",\"type\":\"prefixes\"},{\"id\":\"10.15782\",\"type\":\"prefixes\"},{\"id\":\"10.15783\",\"type\":\"prefixes\"},{\"id\":\"10.17612\",\"type\":\"prefixes\"},{\"id\":\"10.17613\",\"type\":\"prefixes\"},{\"id\":\"10.17610\",\"type\":\"prefixes\"},{\"id\":\"10.17611\",\"type\":\"prefixes\"},{\"id\":\"10.17616\",\"type\":\"prefixes\"},{\"id\":\"10.17614\",\"type\":\"prefixes\"},{\"id\":\"10.17615\",\"type\":\"prefixes\"},{\"id\":\"10.17602\",\"type\":\"prefixes\"},{\"id\":\"10.17603\",\"type\":\"prefixes\"},{\"id\":\"10.17604\",\"type\":\"prefixes\"},{\"id\":\"10.17605\",\"type\":\"prefixes\"},{\"id\":\"10.17606\",\"type\":\"prefixes\"},{\"id\":\"10.17607\",\"type\":\"prefixes\"},{\"id\":\"10.17608\",\"type\":\"prefixes\"},{\"id\":\"10.17609\",\"type\":\"prefixes\"},{\"id\":\"10.17909\",\"type\":\"prefixes\"},{\"id\":\"10.17908\",\"type\":\"prefixes\"},{\"id\":\"10.17916\",\"type\":\"prefixes\"},{\"id\":\"10.17915\",\"type\":\"prefixes\"},{\"id\":\"10.17918\",\"type\":\"prefixes\"},{\"id\":\"10.17917\",\"type\":\"prefixes\"},{\"id\":\"10.17910\",\"type\":\"prefixes\"},{\"id\":\"10.17912\",\"type\":\"prefixes\"},{\"id\":\"10.17911\",\"type\":\"prefixes\"},{\"id\":\"10.17914\",\"type\":\"prefixes\"},{\"id\":\"10.17913\",\"type\":\"prefixes\"},{\"id\":\"10.17920\",\"type\":\"prefixes\"},{\"id\":\"10.18130\",\"type\":\"prefixes\"},{\"id\":\"10.18131\",\"type\":\"prefixes\"},{\"id\":\"10.18128\",\"type\":\"prefixes\"},{\"id\":\"10.18127\",\"type\":\"prefixes\"},{\"id\":\"10.18129\",\"type\":\"prefixes\"},{\"id\":\"10.18125\",\"type\":\"prefixes\"},{\"id\":\"10.18126\",\"type\":\"prefixes\"},{\"id\":\"10.18123\",\"type\":\"prefixes\"},{\"id\":\"10.18124\",\"type\":\"prefixes\"},{\"id\":\"10.18121\",\"type\":\"prefixes\"},{\"id\":\"10.18122\",\"type\":\"prefixes\"},{\"id\":\"10.18120\",\"type\":\"prefixes\"},{\"id\":\"10.18119\",\"type\":\"prefixes\"},{\"id\":\"10.18118\",\"type\":\"prefixes\"},{\"id\":\"10.18117\",\"type\":\"prefixes\"},{\"id\":\"10.18116\",\"type\":\"prefixes\"},{\"id\":\"10.18115\",\"type\":\"prefixes\"},{\"id\":\"10.18114\",\"type\":\"prefixes\"},{\"id\":\"10.18113\",\"type\":\"prefixes\"},{\"id\":\"10.18112\",\"type\":\"prefixes\"},{\"id\":\"10.18433\",\"type\":\"prefixes\"},{\"id\":\"10.18434\",\"type\":\"prefixes\"},{\"id\":\"10.18431\",\"type\":\"prefixes\"},{\"id\":\"10.18432\",\"type\":\"prefixes\"},{\"id\":\"10.18430\",\"type\":\"prefixes\"},{\"id\":\"10.18435\",\"type\":\"prefixes\"},{\"id\":\"10.18436\",\"type\":\"prefixes\"},{\"id\":\"10.18437\",\"type\":\"prefixes\"},{\"id\":\"10.18438\",\"type\":\"prefixes\"},{\"id\":\"10.18439\",\"type\":\"prefixes\"},{\"id\":\"10.18737\",\"type\":\"prefixes\"},{\"id\":\"10.18736\",\"type\":\"prefixes\"},{\"id\":\"10.18739\",\"type\":\"prefixes\"},{\"id\":\"10.18738\",\"type\":\"prefixes\"},{\"id\":\"10.18733\",\"type\":\"prefixes\"},{\"id\":\"10.18732\",\"type\":\"prefixes\"},{\"id\":\"10.18735\",\"type\":\"prefixes\"},{\"id\":\"10.18734\",\"type\":\"prefixes\"},{\"id\":\"10.18740\",\"type\":\"prefixes\"},{\"id\":\"10.18741\",\"type\":\"prefixes\"},{\"id\":\"10.20360\",\"type\":\"prefixes\"},{\"id\":\"10.20361\",\"type\":\"prefixes\"},{\"id\":\"10.20353\",\"type\":\"prefixes\"},{\"id\":\"10.20354\",\"type\":\"prefixes\"},{\"id\":\"10.20355\",\"type\":\"prefixes\"},{\"id\":\"10.20356\",\"type\":\"prefixes\"},{\"id\":\"10.20352\",\"type\":\"prefixes\"},{\"id\":\"10.20357\",\"type\":\"prefixes\"},{\"id\":\"10.20358\",\"type\":\"prefixes\"},{\"id\":\"10.20359\",\"type\":\"prefixes\"},{\"id\":\"10.21228\",\"type\":\"prefixes\"},{\"id\":\"10.21229\",\"type\":\"prefixes\"},{\"id\":\"10.21226\",\"type\":\"prefixes\"},{\"id\":\"10.21227\",\"type\":\"prefixes\"},{\"id\":\"10.21224\",\"type\":\"prefixes\"},{\"id\":\"10.21225\",\"type\":\"prefixes\"},{\"id\":\"10.21222\",\"type\":\"prefixes\"},{\"id\":\"10.21223\",\"type\":\"prefixes\"},{\"id\":\"10.21220\",\"type\":\"prefixes\"},{\"id\":\"10.21221\",\"type\":\"prefixes\"},{\"id\":\"10.21237\",\"type\":\"prefixes\"},{\"id\":\"10.21238\",\"type\":\"prefixes\"},{\"id\":\"10.21239\",\"type\":\"prefixes\"},{\"id\":\"10.21233\",\"type\":\"prefixes\"},{\"id\":\"10.21234\",\"type\":\"prefixes\"},{\"id\":\"10.21235\",\"type\":\"prefixes\"},{\"id\":\"10.21236\",\"type\":\"prefixes\"},{\"id\":\"10.21230\",\"type\":\"prefixes\"},{\"id\":\"10.21231\",\"type\":\"prefixes\"},{\"id\":\"10.21430\",\"type\":\"prefixes\"},{\"id\":\"10.21433\",\"type\":\"prefixes\"},{\"id\":\"10.21431\",\"type\":\"prefixes\"},{\"id\":\"10.21432\",\"type\":\"prefixes\"},{\"id\":\"10.21420\",\"type\":\"prefixes\"},{\"id\":\"10.21421\",\"type\":\"prefixes\"},{\"id\":\"10.21422\",\"type\":\"prefixes\"},{\"id\":\"10.21423\",\"type\":\"prefixes\"},{\"id\":\"10.21424\",\"type\":\"prefixes\"},{\"id\":\"10.21425\",\"type\":\"prefixes\"},{\"id\":\"10.21426\",\"type\":\"prefixes\"},{\"id\":\"10.21428\",\"type\":\"prefixes\"},{\"id\":\"10.21429\",\"type\":\"prefixes\"},{\"id\":\"10.21419\",\"type\":\"prefixes\"},{\"id\":\"10.21417\",\"type\":\"prefixes\"},{\"id\":\"10.21418\",\"type\":\"prefixes\"},{\"id\":\"10.21416\",\"type\":\"prefixes\"},{\"id\":\"10.21414\",\"type\":\"prefixes\"},{\"id\":\"10.21970\",\"type\":\"prefixes\"},{\"id\":\"10.21971\",\"type\":\"prefixes\"},{\"id\":\"10.21972\",\"type\":\"prefixes\"},{\"id\":\"10.21973\",\"type\":\"prefixes\"},{\"id\":\"10.21974\",\"type\":\"prefixes\"},{\"id\":\"10.21975\",\"type\":\"prefixes\"},{\"id\":\"10.21976\",\"type\":\"prefixes\"},{\"id\":\"10.21977\",\"type\":\"prefixes\"},{\"id\":\"10.21978\",\"type\":\"prefixes\"},{\"id\":\"10.21979\",\"type\":\"prefixes\"},{\"id\":\"10.21969\",\"type\":\"prefixes\"},{\"id\":\"10.21968\",\"type\":\"prefixes\"},{\"id\":\"10.21992\",\"type\":\"prefixes\"},{\"id\":\"10.21990\",\"type\":\"prefixes\"},{\"id\":\"10.21991\",\"type\":\"prefixes\"},{\"id\":\"10.21983\",\"type\":\"prefixes\"},{\"id\":\"10.21984\",\"type\":\"prefixes\"},{\"id\":\"10.21981\",\"type\":\"prefixes\"},{\"id\":\"10.21982\",\"type\":\"prefixes\"},{\"id\":\"10.21980\",\"type\":\"prefixes\"},{\"id\":\"10.21989\",\"type\":\"prefixes\"},{\"id\":\"10.21987\",\"type\":\"prefixes\"},{\"id\":\"10.21988\",\"type\":\"prefixes\"},{\"id\":\"10.21986\",\"type\":\"prefixes\"},{\"id\":\"10.5195\",\"type\":\"prefixes\"},{\"id\":\"10.80030\",\"type\":\"prefixes\"}]}}},{\"id\":\"bl\",\"type\":\"providers\",\"attributes\":{\"name\":\"The British Library\",\"displayName\":\"The British Library\",\"symbol\":\"BL\",\"website\":\"https://www.british.co.uk\",\"systemEmail\":\"datasets@bl.uk\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"GB\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/bl.png?1583241760\",\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/05dhe8b71\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-03T13:22:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"bl.ukda\",\"type\":\"clients\"},{\"id\":\"bl.test\",\"type\":\"clients\"},{\"id\":\"bl.esds-i\",\"type\":\"clients\"},{\"id\":\"bl.wap\",\"type\":\"clients\"},{\"id\":\"bl.oxdb\",\"type\":\"clients\"},{\"id\":\"bl.sagecite\",\"type\":\"clients\"},{\"id\":\"bl.nerc\",\"type\":\"clients\"},{\"id\":\"bl.ads\",\"type\":\"clients\"},{\"id\":\"bl.stfc\",\"type\":\"clients\"},{\"id\":\"bl.bgi\",\"type\":\"clients\"},{\"id\":\"bl.fba\",\"type\":\"clients\"},{\"id\":\"bl.test3\",\"type\":\"clients\"},{\"id\":\"bl.ucld\",\"type\":\"clients\"},{\"id\":\"bl.old-api\",\"type\":\"clients\"},{\"id\":\"bl.diamond\",\"type\":\"clients\"},{\"id\":\"bl.hull\",\"type\":\"clients\"},{\"id\":\"bl.edtest\",\"type\":\"clients\"},{\"id\":\"bl.jisc-mrd\",\"type\":\"clients\"},{\"id\":\"bl.vads\",\"type\":\"clients\"},{\"id\":\"bl.notts\",\"type\":\"clients\"},{\"id\":\"bl.essex\",\"type\":\"clients\"},{\"id\":\"bl.soton\",\"type\":\"clients\"},{\"id\":\"bl.bristol\",\"type\":\"clients\"},{\"id\":\"bl.glasgow\",\"type\":\"clients\"},{\"id\":\"bl.lincoln\",\"type\":\"clients\"},{\"id\":\"bl.dri\",\"type\":\"clients\"},{\"id\":\"bl.ucd\",\"type\":\"clients\"},{\"id\":\"bl.imperial\",\"type\":\"clients\"},{\"id\":\"bl.ccdc\",\"type\":\"clients\"},{\"id\":\"bl.iucn\",\"type\":\"clients\"},{\"id\":\"bl.ntu\",\"type\":\"clients\"},{\"id\":\"bl.oneis\",\"type\":\"clients\"},{\"id\":\"bl.f1000r\",\"type\":\"clients\"},{\"id\":\"bl.libre\",\"type\":\"clients\"},{\"id\":\"bl.leeds\",\"type\":\"clients\"},{\"id\":\"bl.sahfos\",\"type\":\"clients\"},{\"id\":\"bl.ed\",\"type\":\"clients\"},{\"id\":\"bl.marinesc\",\"type\":\"clients\"},{\"id\":\"bl.uel\",\"type\":\"clients\"},{\"id\":\"bl.mchester\",\"type\":\"clients\"},{\"id\":\"bl.sheffiel\",\"type\":\"clients\"},{\"id\":\"bl.cefas\",\"type\":\"clients\"},{\"id\":\"bl.lshtm\",\"type\":\"clients\"},{\"id\":\"bl.ukaea\",\"type\":\"clients\"},{\"id\":\"bl.york\",\"type\":\"clients\"},{\"id\":\"bl.bath\",\"type\":\"clients\"},{\"id\":\"bl.surrey\",\"type\":\"clients\"},{\"id\":\"bl.nshd\",\"type\":\"clients\"},{\"id\":\"bl.mdx\",\"type\":\"clients\"},{\"id\":\"bl.durham\",\"type\":\"clients\"},{\"id\":\"bl.passtest\",\"type\":\"clients\"},{\"id\":\"bl.strath\",\"type\":\"clients\"},{\"id\":\"bl.bir\",\"type\":\"clients\"},{\"id\":\"bl.nhm\",\"type\":\"clients\"},{\"id\":\"bl.mendeley\",\"type\":\"clients\"},{\"id\":\"bl.rsc\",\"type\":\"clients\"},{\"id\":\"bl.lancs\",\"type\":\"clients\"},{\"id\":\"bl.cardiff\",\"type\":\"clients\"},{\"id\":\"bl.portsmth\",\"type\":\"clients\"},{\"id\":\"bl.mba\",\"type\":\"clients\"},{\"id\":\"bl.dundee\",\"type\":\"clients\"},{\"id\":\"bl.bto\",\"type\":\"clients\"},{\"id\":\"bl.standrew\",\"type\":\"clients\"},{\"id\":\"bl.kent\",\"type\":\"clients\"},{\"id\":\"bl.qub\",\"type\":\"clients\"},{\"id\":\"bl.lpool\",\"type\":\"clients\"},{\"id\":\"bl.eap\",\"type\":\"clients\"},{\"id\":\"bl.aber\",\"type\":\"clients\"},{\"id\":\"bl.uclan\",\"type\":\"clients\"},{\"id\":\"bl.qmul\",\"type\":\"clients\"},{\"id\":\"bl.lboro\",\"type\":\"clients\"},{\"id\":\"bl.shef\",\"type\":\"clients\"},{\"id\":\"bl.sgul\",\"type\":\"clients\"},{\"id\":\"bl.aston\",\"type\":\"clients\"},{\"id\":\"bl.rhul\",\"type\":\"clients\"},{\"id\":\"bl.uea\",\"type\":\"clients\"},{\"id\":\"bl.hallam\",\"type\":\"clients\"},{\"id\":\"bl.ncl\",\"type\":\"clients\"},{\"id\":\"bl.brighton\",\"type\":\"clients\"},{\"id\":\"bl.hwu\",\"type\":\"clients\"},{\"id\":\"bl.ecmwf\",\"type\":\"clients\"},{\"id\":\"bl.brunel\",\"type\":\"clients\"},{\"id\":\"bl.reading\",\"type\":\"clients\"},{\"id\":\"bl.birkbeck\",\"type\":\"clients\"},{\"id\":\"bl.unity\",\"type\":\"clients\"},{\"id\":\"bl.granta\",\"type\":\"clients\"},{\"id\":\"bl.cran\",\"type\":\"clients\"},{\"id\":\"bl.cam\",\"type\":\"clients\"},{\"id\":\"bl.derby\",\"type\":\"clients\"},{\"id\":\"bl.abdn\",\"type\":\"clients\"},{\"id\":\"bl.salford\",\"type\":\"clients\"},{\"id\":\"bl.herts\",\"type\":\"clients\"},{\"id\":\"bl.kcl\",\"type\":\"clients\"},{\"id\":\"bl.napier\",\"type\":\"clients\"},{\"id\":\"bl.marineie\",\"type\":\"clients\"},{\"id\":\"bl.bmouth\",\"type\":\"clients\"},{\"id\":\"bl.bathspa\",\"type\":\"clients\"},{\"id\":\"bl.keele\",\"type\":\"clients\"},{\"id\":\"bl.lsbu\",\"type\":\"clients\"},{\"id\":\"bl.lse\",\"type\":\"clients\"},{\"id\":\"bl.odi\",\"type\":\"clients\"},{\"id\":\"bl.labs\",\"type\":\"clients\"},{\"id\":\"bl.ulster\",\"type\":\"clients\"},{\"id\":\"bl.exeter\",\"type\":\"clients\"},{\"id\":\"bl.open\",\"type\":\"clients\"},{\"id\":\"bl.dmu\",\"type\":\"clients\"},{\"id\":\"bl.kingston\",\"type\":\"clients\"},{\"id\":\"bl.lstmed\",\"type\":\"clients\"},{\"id\":\"bl.ljmu\",\"type\":\"clients\"},{\"id\":\"bl.ever-est\",\"type\":\"clients\"},{\"id\":\"bl.jiscrdss\",\"type\":\"clients\"},{\"id\":\"bl.metadata\",\"type\":\"clients\"},{\"id\":\"bl.mmu\",\"type\":\"clients\"},{\"id\":\"bl.abertay\",\"type\":\"clients\"},{\"id\":\"bl.rothres\",\"type\":\"clients\"},{\"id\":\"bl.rcm\",\"type\":\"clients\"},{\"id\":\"bl.phe\",\"type\":\"clients\"},{\"id\":\"bl.plymouth\",\"type\":\"clients\"},{\"id\":\"bl.brookes\",\"type\":\"clients\"},{\"id\":\"bl.qnl\",\"type\":\"clients\"},{\"id\":\"bl.limerick\",\"type\":\"clients\"},{\"id\":\"bl.soas\",\"type\":\"clients\"},{\"id\":\"bl.jncc\",\"type\":\"clients\"},{\"id\":\"bl.gold\",\"type\":\"clients\"},{\"id\":\"bl.bham\",\"type\":\"clients\"},{\"id\":\"bl.iita\",\"type\":\"clients\"},{\"id\":\"bl.jisc\",\"type\":\"clients\"},{\"id\":\"bl.rvc\",\"type\":\"clients\"},{\"id\":\"bl.westminster\",\"type\":\"clients\"},{\"id\":\"bl.repo\",\"type\":\"clients\"},{\"id\":\"bl.rep-bm\",\"type\":\"clients\"},{\"id\":\"bl.rep-mola\",\"type\":\"clients\"},{\"id\":\"bl.rep-nms\",\"type\":\"clients\"},{\"id\":\"bl.rep-tate\",\"type\":\"clients\"},{\"id\":\"bl.stirling\",\"type\":\"clients\"},{\"id\":\"bl.testd\",\"type\":\"clients\"},{\"id\":\"bl.rep-kew\",\"type\":\"clients\"},{\"id\":\"bl.huddersfield\",\"type\":\"clients\"},{\"id\":\"bl.ceh\",\"type\":\"clients\"},{\"id\":\"bl.cabi\",\"type\":\"clients\"},{\"id\":\"bl.nls\",\"type\":\"clients\"},{\"id\":\"bl.testf\",\"type\":\"clients\"},{\"id\":\"bl.ual\",\"type\":\"clients\"},{\"id\":\"bl.unep-wcmc\",\"type\":\"clients\"},{\"id\":\"bl.train\",\"type\":\"clients\"},{\"id\":\"bl.ons\",\"type\":\"clients\"},{\"id\":\"bl.fairshareox\",\"type\":\"clients\"},{\"id\":\"bl.wcmc\",\"type\":\"clients\"},{\"id\":\"bl.somia\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4124\",\"type\":\"prefixes\"},{\"id\":\"10.5255\",\"type\":\"prefixes\"},{\"id\":\"10.5256\",\"type\":\"prefixes\"},{\"id\":\"10.5257\",\"type\":\"prefixes\"},{\"id\":\"10.5258\",\"type\":\"prefixes\"},{\"id\":\"10.5259\",\"type\":\"prefixes\"},{\"id\":\"10.5287\",\"type\":\"prefixes\"},{\"id\":\"10.5518\",\"type\":\"prefixes\"},{\"id\":\"10.5519\",\"type\":\"prefixes\"},{\"id\":\"10.5520\",\"type\":\"prefixes\"},{\"id\":\"10.5521\",\"type\":\"prefixes\"},{\"id\":\"10.5522\",\"type\":\"prefixes\"},{\"id\":\"10.5523\",\"type\":\"prefixes\"},{\"id\":\"10.5524\",\"type\":\"prefixes\"},{\"id\":\"10.5525\",\"type\":\"prefixes\"},{\"id\":\"10.5526\",\"type\":\"prefixes\"},{\"id\":\"10.5285\",\"type\":\"prefixes\"},{\"id\":\"10.5284\",\"type\":\"prefixes\"},{\"id\":\"10.5286\",\"type\":\"prefixes\"},{\"id\":\"10.7486\",\"type\":\"prefixes\"},{\"id\":\"10.7487\",\"type\":\"prefixes\"},{\"id\":\"10.7488\",\"type\":\"prefixes\"},{\"id\":\"10.7489\",\"type\":\"prefixes\"},{\"id\":\"10.7490\",\"type\":\"prefixes\"},{\"id\":\"10.14468\",\"type\":\"prefixes\"},{\"id\":\"10.14469\",\"type\":\"prefixes\"},{\"id\":\"10.14465\",\"type\":\"prefixes\"},{\"id\":\"10.14466\",\"type\":\"prefixes\"},{\"id\":\"10.14467\",\"type\":\"prefixes\"},{\"id\":\"10.15131\",\"type\":\"prefixes\"},{\"id\":\"10.15132\",\"type\":\"prefixes\"},{\"id\":\"10.15130\",\"type\":\"prefixes\"},{\"id\":\"10.15129\",\"type\":\"prefixes\"},{\"id\":\"10.15128\",\"type\":\"prefixes\"},{\"id\":\"10.15127\",\"type\":\"prefixes\"},{\"id\":\"10.15123\",\"type\":\"prefixes\"},{\"id\":\"10.15126\",\"type\":\"prefixes\"},{\"id\":\"10.15125\",\"type\":\"prefixes\"},{\"id\":\"10.15124\",\"type\":\"prefixes\"},{\"id\":\"10.17029\",\"type\":\"prefixes\"},{\"id\":\"10.17028\",\"type\":\"prefixes\"},{\"id\":\"10.17033\",\"type\":\"prefixes\"},{\"id\":\"10.17032\",\"type\":\"prefixes\"},{\"id\":\"10.17031\",\"type\":\"prefixes\"},{\"id\":\"10.17030\",\"type\":\"prefixes\"},{\"id\":\"10.17037\",\"type\":\"prefixes\"},{\"id\":\"10.17036\",\"type\":\"prefixes\"},{\"id\":\"10.17035\",\"type\":\"prefixes\"},{\"id\":\"10.17034\",\"type\":\"prefixes\"},{\"id\":\"10.17639\",\"type\":\"prefixes\"},{\"id\":\"10.17638\",\"type\":\"prefixes\"},{\"id\":\"10.17637\",\"type\":\"prefixes\"},{\"id\":\"10.17636\",\"type\":\"prefixes\"},{\"id\":\"10.17635\",\"type\":\"prefixes\"},{\"id\":\"10.17634\",\"type\":\"prefixes\"},{\"id\":\"10.17633\",\"type\":\"prefixes\"},{\"id\":\"10.17632\",\"type\":\"prefixes\"},{\"id\":\"10.17630\",\"type\":\"prefixes\"},{\"id\":\"10.17631\",\"type\":\"prefixes\"},{\"id\":\"10.17870\",\"type\":\"prefixes\"},{\"id\":\"10.17868\",\"type\":\"prefixes\"},{\"id\":\"10.17867\",\"type\":\"prefixes\"},{\"id\":\"10.17869\",\"type\":\"prefixes\"},{\"id\":\"10.17864\",\"type\":\"prefixes\"},{\"id\":\"10.17862\",\"type\":\"prefixes\"},{\"id\":\"10.17863\",\"type\":\"prefixes\"},{\"id\":\"10.17861\",\"type\":\"prefixes\"},{\"id\":\"10.17866\",\"type\":\"prefixes\"},{\"id\":\"10.17865\",\"type\":\"prefixes\"},{\"id\":\"10.18746\",\"type\":\"prefixes\"},{\"id\":\"10.18745\",\"type\":\"prefixes\"},{\"id\":\"10.18744\",\"type\":\"prefixes\"},{\"id\":\"10.18743\",\"type\":\"prefixes\"},{\"id\":\"10.18742\",\"type\":\"prefixes\"},{\"id\":\"10.20392\",\"type\":\"prefixes\"},{\"id\":\"10.20391\",\"type\":\"prefixes\"},{\"id\":\"10.20390\",\"type\":\"prefixes\"},{\"id\":\"10.20394\",\"type\":\"prefixes\"},{\"id\":\"10.20393\",\"type\":\"prefixes\"},{\"id\":\"10.21250\",\"type\":\"prefixes\"},{\"id\":\"10.21254\",\"type\":\"prefixes\"},{\"id\":\"10.21253\",\"type\":\"prefixes\"},{\"id\":\"10.21252\",\"type\":\"prefixes\"},{\"id\":\"10.21251\",\"type\":\"prefixes\"},{\"id\":\"10.21957\",\"type\":\"prefixes\"},{\"id\":\"10.21956\",\"type\":\"prefixes\"},{\"id\":\"10.21953\",\"type\":\"prefixes\"},{\"id\":\"10.21955\",\"type\":\"prefixes\"},{\"id\":\"10.21954\",\"type\":\"prefixes\"},{\"id\":\"10.22024\",\"type\":\"prefixes\"},{\"id\":\"10.22023\",\"type\":\"prefixes\"},{\"id\":\"10.22021\",\"type\":\"prefixes\"},{\"id\":\"10.22026\",\"type\":\"prefixes\"},{\"id\":\"10.22025\",\"type\":\"prefixes\"},{\"id\":\"10.22020\",\"type\":\"prefixes\"},{\"id\":\"10.23637\",\"type\":\"prefixes\"},{\"id\":\"10.23636\",\"type\":\"prefixes\"},{\"id\":\"10.23635\",\"type\":\"prefixes\"},{\"id\":\"10.23634\",\"type\":\"prefixes\"},{\"id\":\"10.24353\",\"type\":\"prefixes\"},{\"id\":\"10.24382\",\"type\":\"prefixes\"},{\"id\":\"10.24383\",\"type\":\"prefixes\"},{\"id\":\"10.24384\",\"type\":\"prefixes\"},{\"id\":\"10.24385\",\"type\":\"prefixes\"},{\"id\":\"10.24380\",\"type\":\"prefixes\"},{\"id\":\"10.24381\",\"type\":\"prefixes\"},{\"id\":\"10.24379\",\"type\":\"prefixes\"},{\"id\":\"10.24376\",\"type\":\"prefixes\"},{\"id\":\"10.24378\",\"type\":\"prefixes\"},{\"id\":\"10.24377\",\"type\":\"prefixes\"},{\"id\":\"10.25506\",\"type\":\"prefixes\"},{\"id\":\"10.25505\",\"type\":\"prefixes\"},{\"id\":\"10.25508\",\"type\":\"prefixes\"},{\"id\":\"10.25507\",\"type\":\"prefixes\"},{\"id\":\"10.25502\",\"type\":\"prefixes\"},{\"id\":\"10.25501\",\"type\":\"prefixes\"},{\"id\":\"10.25504\",\"type\":\"prefixes\"},{\"id\":\"10.25503\",\"type\":\"prefixes\"},{\"id\":\"10.25500\",\"type\":\"prefixes\"},{\"id\":\"10.25499\",\"type\":\"prefixes\"},{\"id\":\"10.25560\",\"type\":\"prefixes\"},{\"id\":\"10.25562\",\"type\":\"prefixes\"},{\"id\":\"10.25561\",\"type\":\"prefixes\"},{\"id\":\"10.25568\",\"type\":\"prefixes\"},{\"id\":\"10.25567\",\"type\":\"prefixes\"},{\"id\":\"10.25569\",\"type\":\"prefixes\"},{\"id\":\"10.25564\",\"type\":\"prefixes\"},{\"id\":\"10.25563\",\"type\":\"prefixes\"},{\"id\":\"10.25566\",\"type\":\"prefixes\"},{\"id\":\"10.25565\",\"type\":\"prefixes\"},{\"id\":\"10.70021\",\"type\":\"prefixes\"},{\"id\":\"10.33567\",\"type\":\"prefixes\"},{\"id\":\"10.33561\",\"type\":\"prefixes\"},{\"id\":\"10.33574\",\"type\":\"prefixes\"},{\"id\":\"10.33559\",\"type\":\"prefixes\"},{\"id\":\"10.33632\",\"type\":\"prefixes\"},{\"id\":\"10.33633\",\"type\":\"prefixes\"},{\"id\":\"10.33603\",\"type\":\"prefixes\"},{\"id\":\"10.33604\",\"type\":\"prefixes\"},{\"id\":\"10.33605\",\"type\":\"prefixes\"},{\"id\":\"10.33606\",\"type\":\"prefixes\"},{\"id\":\"10.33634\",\"type\":\"prefixes\"},{\"id\":\"10.25601\",\"type\":\"prefixes\"},{\"id\":\"10.1234\",\"type\":\"prefixes\"},{\"id\":\"10.7948\",\"type\":\"prefixes\"},{\"id\":\"10.7956\",\"type\":\"prefixes\"},{\"id\":\"10.80007\",\"type\":\"prefixes\"},{\"id\":\"10.80009\",\"type\":\"prefixes\"},{\"id\":\"10.80045\",\"type\":\"prefixes\"},{\"id\":\"10.80054\",\"type\":\"prefixes\"},{\"id\":\"10.80020\",\"type\":\"prefixes\"},{\"id\":\"10.80103\",\"type\":\"prefixes\"},{\"id\":\"10.80226\",\"type\":\"prefixes\"},{\"id\":\"10.80177\",\"type\":\"prefixes\"},{\"id\":\"10.80181\",\"type\":\"prefixes\"},{\"id\":\"10.80198\",\"type\":\"prefixes\"},{\"id\":\"10.80207\",\"type\":\"prefixes\"},{\"id\":\"10.80216\",\"type\":\"prefixes\"}]}}},{\"id\":\"inist\",\"type\":\"providers\",\"attributes\":{\"name\":\"Institut de l'Information Scientifique et Technique\",\"displayName\":\"INIST\",\"symbol\":\"INIST\",\"website\":\"https://www.inist.fr/\",\"systemEmail\":\"mohamed.yahia@inist.fr\",\"groupEmail\":null,\"description\":\"L’Institut de l’information scientifique et technique (Inist), unité propre de service du CNRS, facilite l’accès, l’analyse et la fouille de l’information scientifique et valorise la production scientifique (publications et données de recherche). Il siège, depuis 1989, dans un bâtiment conçu par l’architecte Jean Nouvel.\",\"region\":\"EMEA\",\"country\":\"FR\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"mohamed.yahia@inist.fr\",\"givenName\":\"Mohamed\",\"familyName\":\"Yahia\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-02-29T10:30:35.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"inist.ill\",\"type\":\"clients\"},{\"id\":\"inist.unc\",\"type\":\"clients\"},{\"id\":\"inist.omp\",\"type\":\"clients\"},{\"id\":\"inist.test\",\"type\":\"clients\"},{\"id\":\"inist.onera\",\"type\":\"clients\"},{\"id\":\"inist.dde\",\"type\":\"clients\"},{\"id\":\"inist.inra\",\"type\":\"clients\"},{\"id\":\"inist.cnrs\",\"type\":\"clients\"},{\"id\":\"inist.ifremer\",\"type\":\"clients\"},{\"id\":\"inist.cirad\",\"type\":\"clients\"},{\"id\":\"inist.memo\",\"type\":\"clients\"},{\"id\":\"inist.ipsl\",\"type\":\"clients\"},{\"id\":\"inist.mae\",\"type\":\"clients\"},{\"id\":\"inist.adisp\",\"type\":\"clients\"},{\"id\":\"inist.omnt\",\"type\":\"clients\"},{\"id\":\"inist.garnier\",\"type\":\"clients\"},{\"id\":\"inist.oreme\",\"type\":\"clients\"},{\"id\":\"inist.esrf\",\"type\":\"clients\"},{\"id\":\"inist.cebc\",\"type\":\"clients\"},{\"id\":\"inist.lix\",\"type\":\"clients\"},{\"id\":\"inist.resif\",\"type\":\"clients\"},{\"id\":\"inist.icsn\",\"type\":\"clients\"},{\"id\":\"inist.serdi\",\"type\":\"clients\"},{\"id\":\"inist.adyva\",\"type\":\"clients\"},{\"id\":\"inist.epp\",\"type\":\"clients\"},{\"id\":\"inist.osug\",\"type\":\"clients\"},{\"id\":\"inist.shom\",\"type\":\"clients\"},{\"id\":\"inist.eac\",\"type\":\"clients\"},{\"id\":\"inist.rdmdtn\",\"type\":\"clients\"},{\"id\":\"inist.unilu\",\"type\":\"clients\"},{\"id\":\"inist.medsys\",\"type\":\"clients\"},{\"id\":\"inist.brgm\",\"type\":\"clients\"},{\"id\":\"inist.bcu\",\"type\":\"clients\"},{\"id\":\"inist.bgi\",\"type\":\"clients\"},{\"id\":\"inist.iif\",\"type\":\"clients\"},{\"id\":\"inist.prax\",\"type\":\"clients\"},{\"id\":\"inist.cecyf\",\"type\":\"clients\"},{\"id\":\"inist.osuna\",\"type\":\"clients\"},{\"id\":\"inist.persyval\",\"type\":\"clients\"},{\"id\":\"inist.umr7300\",\"type\":\"clients\"},{\"id\":\"inist.unjf\",\"type\":\"clients\"},{\"id\":\"inist.ipgp\",\"type\":\"clients\"},{\"id\":\"inist.upvm3\",\"type\":\"clients\"},{\"id\":\"inist.cdsp\",\"type\":\"clients\"},{\"id\":\"inist.sbr\",\"type\":\"clients\"},{\"id\":\"inist.ubm\",\"type\":\"clients\"},{\"id\":\"inist.latmos\",\"type\":\"clients\"},{\"id\":\"inist.inria\",\"type\":\"clients\"},{\"id\":\"inist.um\",\"type\":\"clients\"},{\"id\":\"inist.minesp\",\"type\":\"clients\"},{\"id\":\"inist.ca\",\"type\":\"clients\"},{\"id\":\"inist.ird\",\"type\":\"clients\"},{\"id\":\"inist.atief\",\"type\":\"clients\"},{\"id\":\"inist.see\",\"type\":\"clients\"},{\"id\":\"inist.ensea\",\"type\":\"clients\"},{\"id\":\"inist.cnfg\",\"type\":\"clients\"},{\"id\":\"inist.aria\",\"type\":\"clients\"},{\"id\":\"inist.cirm\",\"type\":\"clients\"},{\"id\":\"inist.acarolog\",\"type\":\"clients\"},{\"id\":\"inist.aeris\",\"type\":\"clients\"},{\"id\":\"inist.iremam\",\"type\":\"clients\"},{\"id\":\"inist.cfbr\",\"type\":\"clients\"},{\"id\":\"inist.omictool\",\"type\":\"clients\"},{\"id\":\"inist.health\",\"type\":\"clients\"},{\"id\":\"inist.uliege\",\"type\":\"clients\"},{\"id\":\"inist.opgc\",\"type\":\"clients\"},{\"id\":\"inist.in2p3\",\"type\":\"clients\"},{\"id\":\"inist.asfera\",\"type\":\"clients\"},{\"id\":\"inist.eost\",\"type\":\"clients\"},{\"id\":\"inist.ifsttar\",\"type\":\"clients\"},{\"id\":\"inist.efluve\",\"type\":\"clients\"},{\"id\":\"inist.upem\",\"type\":\"clients\"},{\"id\":\"inist.ihes\",\"type\":\"clients\"},{\"id\":\"inist.ipbr\",\"type\":\"clients\"},{\"id\":\"inist.cds\",\"type\":\"clients\"},{\"id\":\"inist.lirmm\",\"type\":\"clients\"},{\"id\":\"inist.sfi\",\"type\":\"clients\"},{\"id\":\"inist.obvil\",\"type\":\"clients\"},{\"id\":\"inist.ulille\",\"type\":\"clients\"},{\"id\":\"inist.ganil\",\"type\":\"clients\"},{\"id\":\"inist.uppa\",\"type\":\"clients\"},{\"id\":\"inist.geode\",\"type\":\"clients\"},{\"id\":\"inist.etnet\",\"type\":\"clients\"},{\"id\":\"inist.sonel\",\"type\":\"clients\"},{\"id\":\"inist.sim\",\"type\":\"clients\"},{\"id\":\"inist.augc\",\"type\":\"clients\"},{\"id\":\"inist.osur\",\"type\":\"clients\"},{\"id\":\"inist.ur\",\"type\":\"clients\"},{\"id\":\"inist.anc\",\"type\":\"clients\"},{\"id\":\"inist.sshade\",\"type\":\"clients\"},{\"id\":\"inist.inrap\",\"type\":\"clients\"},{\"id\":\"inist.riurba\",\"type\":\"clients\"},{\"id\":\"inist.otelo\",\"type\":\"clients\"},{\"id\":\"inist.nu\",\"type\":\"clients\"},{\"id\":\"inist.alius\",\"type\":\"clients\"},{\"id\":\"inist.ibisba\",\"type\":\"clients\"},{\"id\":\"inist.ehess\",\"type\":\"clients\"},{\"id\":\"inist.afh\",\"type\":\"clients\"},{\"id\":\"inist.ijlra\",\"type\":\"clients\"},{\"id\":\"inist.sft\",\"type\":\"clients\"},{\"id\":\"inist.irisa\",\"type\":\"clients\"},{\"id\":\"inist.casd\",\"type\":\"clients\"},{\"id\":\"inist.irjs\",\"type\":\"clients\"},{\"id\":\"inist.mshsud\",\"type\":\"clients\"},{\"id\":\"inist.utc\",\"type\":\"clients\"},{\"id\":\"inist.cercec\",\"type\":\"clients\"},{\"id\":\"inist.cea\",\"type\":\"clients\"},{\"id\":\"inist.upd\",\"type\":\"clients\"},{\"id\":\"inist.sofop\",\"type\":\"clients\"},{\"id\":\"inist.ua\",\"type\":\"clients\"},{\"id\":\"inist.efe\",\"type\":\"clients\"},{\"id\":\"inist.soleil\",\"type\":\"clients\"},{\"id\":\"inist.lestudium\",\"type\":\"clients\"},{\"id\":\"inist.humanum\",\"type\":\"clients\"},{\"id\":\"inist.osutheta\",\"type\":\"clients\"},{\"id\":\"inist.isae\",\"type\":\"clients\"},{\"id\":\"inist.cnes\",\"type\":\"clients\"},{\"id\":\"inist.ccj\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4123\",\"type\":\"prefixes\"},{\"id\":\"10.5291\",\"type\":\"prefixes\"},{\"id\":\"10.6096\",\"type\":\"prefixes\"},{\"id\":\"10.6098\",\"type\":\"prefixes\"},{\"id\":\"10.12762\",\"type\":\"prefixes\"},{\"id\":\"10.12763\",\"type\":\"prefixes\"},{\"id\":\"10.12770\",\"type\":\"prefixes\"},{\"id\":\"10.13009\",\"type\":\"prefixes\"},{\"id\":\"10.13143\",\"type\":\"prefixes\"},{\"id\":\"10.13144\",\"type\":\"prefixes\"},{\"id\":\"10.13155\",\"type\":\"prefixes\"},{\"id\":\"10.14283\",\"type\":\"prefixes\"},{\"id\":\"10.7491\",\"type\":\"prefixes\"},{\"id\":\"10.7794\",\"type\":\"prefixes\"},{\"id\":\"10.7893\",\"type\":\"prefixes\"},{\"id\":\"10.14756\",\"type\":\"prefixes\"},{\"id\":\"10.14758\",\"type\":\"prefixes\"},{\"id\":\"10.14768\",\"type\":\"prefixes\"},{\"id\":\"10.15122\",\"type\":\"prefixes\"},{\"id\":\"10.15148\",\"type\":\"prefixes\"},{\"id\":\"10.15151\",\"type\":\"prefixes\"},{\"id\":\"10.15474\",\"type\":\"prefixes\"},{\"id\":\"10.15454\",\"type\":\"prefixes\"},{\"id\":\"10.15455\",\"type\":\"prefixes\"},{\"id\":\"10.15778\",\"type\":\"prefixes\"},{\"id\":\"10.15777\",\"type\":\"prefixes\"},{\"id\":\"10.17020\",\"type\":\"prefixes\"},{\"id\":\"10.17019\",\"type\":\"prefixes\"},{\"id\":\"10.17178\",\"type\":\"prefixes\"},{\"id\":\"10.17184\",\"type\":\"prefixes\"},{\"id\":\"10.17180\",\"type\":\"prefixes\"},{\"id\":\"10.17183\",\"type\":\"prefixes\"},{\"id\":\"10.17600\",\"type\":\"prefixes\"},{\"id\":\"10.17601\",\"type\":\"prefixes\"},{\"id\":\"10.17881\",\"type\":\"prefixes\"},{\"id\":\"10.17882\",\"type\":\"prefixes\"},{\"id\":\"10.18168\",\"type\":\"prefixes\"},{\"id\":\"10.18167\",\"type\":\"prefixes\"},{\"id\":\"10.18143\",\"type\":\"prefixes\"},{\"id\":\"10.18144\",\"type\":\"prefixes\"},{\"id\":\"10.18142\",\"type\":\"prefixes\"},{\"id\":\"10.18145\",\"type\":\"prefixes\"},{\"id\":\"10.18465\",\"type\":\"prefixes\"},{\"id\":\"10.18464\",\"type\":\"prefixes\"},{\"id\":\"10.18463\",\"type\":\"prefixes\"},{\"id\":\"10.18462\",\"type\":\"prefixes\"},{\"id\":\"10.18709\",\"type\":\"prefixes\"},{\"id\":\"10.18713\",\"type\":\"prefixes\"},{\"id\":\"10.18715\",\"type\":\"prefixes\"},{\"id\":\"10.18714\",\"type\":\"prefixes\"},{\"id\":\"10.21363\",\"type\":\"prefixes\"},{\"id\":\"10.21362\",\"type\":\"prefixes\"},{\"id\":\"10.21411\",\"type\":\"prefixes\"},{\"id\":\"10.21412\",\"type\":\"prefixes\"},{\"id\":\"10.21410\",\"type\":\"prefixes\"},{\"id\":\"10.21413\",\"type\":\"prefixes\"},{\"id\":\"10.21409\",\"type\":\"prefixes\"},{\"id\":\"10.23708\",\"type\":\"prefixes\"},{\"id\":\"10.23647\",\"type\":\"prefixes\"},{\"id\":\"10.23646\",\"type\":\"prefixes\"},{\"id\":\"10.23709\",\"type\":\"prefixes\"},{\"id\":\"10.23639\",\"type\":\"prefixes\"},{\"id\":\"10.23638\",\"type\":\"prefixes\"},{\"id\":\"10.23723\",\"type\":\"prefixes\"},{\"id\":\"10.23724\",\"type\":\"prefixes\"},{\"id\":\"10.24351\",\"type\":\"prefixes\"},{\"id\":\"10.24350\",\"type\":\"prefixes\"},{\"id\":\"10.24349\",\"type\":\"prefixes\"},{\"id\":\"10.24348\",\"type\":\"prefixes\"},{\"id\":\"10.24347\",\"type\":\"prefixes\"},{\"id\":\"10.24346\",\"type\":\"prefixes\"},{\"id\":\"10.0339\",\"type\":\"prefixes\"},{\"id\":\"10.0336\",\"type\":\"prefixes\"},{\"id\":\"10.0337\",\"type\":\"prefixes\"},{\"id\":\"10.0338\",\"type\":\"prefixes\"},{\"id\":\"10.0340\",\"type\":\"prefixes\"},{\"id\":\"10.0341\",\"type\":\"prefixes\"},{\"id\":\"10.0342\",\"type\":\"prefixes\"},{\"id\":\"10.0343\",\"type\":\"prefixes\"},{\"id\":\"10.25329\",\"type\":\"prefixes\"},{\"id\":\"10.25326\",\"type\":\"prefixes\"},{\"id\":\"10.25328\",\"type\":\"prefixes\"},{\"id\":\"10.25327\",\"type\":\"prefixes\"},{\"id\":\"10.25517\",\"type\":\"prefixes\"},{\"id\":\"10.25519\",\"type\":\"prefixes\"},{\"id\":\"10.25518\",\"type\":\"prefixes\"},{\"id\":\"10.25520\",\"type\":\"prefixes\"},{\"id\":\"10.70023\",\"type\":\"prefixes\"},{\"id\":\"10.70024\",\"type\":\"prefixes\"},{\"id\":\"10.25580\",\"type\":\"prefixes\"},{\"id\":\"10.25579\",\"type\":\"prefixes\"},{\"id\":\"10.25578\",\"type\":\"prefixes\"},{\"id\":\"10.25575\",\"type\":\"prefixes\"},{\"id\":\"10.25577\",\"type\":\"prefixes\"},{\"id\":\"10.25576\",\"type\":\"prefixes\"},{\"id\":\"10.33553\",\"type\":\"prefixes\"},{\"id\":\"10.33554\",\"type\":\"prefixes\"},{\"id\":\"10.33557\",\"type\":\"prefixes\"},{\"id\":\"10.33592\",\"type\":\"prefixes\"},{\"id\":\"10.70104\",\"type\":\"prefixes\"},{\"id\":\"10.70108\",\"type\":\"prefixes\"},{\"id\":\"10.70109\",\"type\":\"prefixes\"},{\"id\":\"10.70112\",\"type\":\"prefixes\"},{\"id\":\"10.70113\",\"type\":\"prefixes\"},{\"id\":\"10.70119\",\"type\":\"prefixes\"},{\"id\":\"10.80011\",\"type\":\"prefixes\"},{\"id\":\"10.80013\",\"type\":\"prefixes\"},{\"id\":\"10.80015\",\"type\":\"prefixes\"},{\"id\":\"10.80014\",\"type\":\"prefixes\"},{\"id\":\"10.80012\",\"type\":\"prefixes\"},{\"id\":\"10.80029\",\"type\":\"prefixes\"},{\"id\":\"10.80031\",\"type\":\"prefixes\"},{\"id\":\"10.80033\",\"type\":\"prefixes\"},{\"id\":\"10.80028\",\"type\":\"prefixes\"},{\"id\":\"10.80032\",\"type\":\"prefixes\"},{\"id\":\"10.80080\",\"type\":\"prefixes\"},{\"id\":\"10.80082\",\"type\":\"prefixes\"},{\"id\":\"10.80081\",\"type\":\"prefixes\"},{\"id\":\"10.80089\",\"type\":\"prefixes\"},{\"id\":\"10.80068\",\"type\":\"prefixes\"},{\"id\":\"10.80069\",\"type\":\"prefixes\"},{\"id\":\"10.80109\",\"type\":\"prefixes\"},{\"id\":\"10.80113\",\"type\":\"prefixes\"},{\"id\":\"10.80114\",\"type\":\"prefixes\"},{\"id\":\"10.80116\",\"type\":\"prefixes\"},{\"id\":\"10.80163\",\"type\":\"prefixes\"},{\"id\":\"10.80233\",\"type\":\"prefixes\"},{\"id\":\"10.80236\",\"type\":\"prefixes\"},{\"id\":\"10.80237\",\"type\":\"prefixes\"}]}}},{\"id\":\"nuig\",\"type\":\"providers\",\"attributes\":{\"name\":\"National University of Ireland Galway\",\"displayName\":\"National University of Ireland Galway\",\"symbol\":\"NUIG\",\"website\":\"https://library.nuigalway.ie\",\"systemEmail\":\"cillian.joy@nuigalway.ie\",\"groupEmail\":\"digitallibrary@nuigalway.ie\",\"description\":null,\"region\":\"EMEA\",\"country\":\"IE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"academicInstitution\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/03bea9k73\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2019-10-30T12:34:30.000Z\",\"updated\":\"2020-02-10T11:44:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"nuig.aran\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.80182\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"irlco\",\"type\":\"providers\"}}}},{\"id\":\"mtakik\",\"type\":\"providers\",\"attributes\":{\"name\":\"MTA Könyvtára\",\"displayName\":\"MTA Könyvtára\",\"symbol\":\"MTAKIK\",\"website\":null,\"systemEmail\":\"holl.andras@konyvtar.mta.hu\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2013-08-14T07:25:22.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"mtakik.phd\",\"type\":\"clients\"},{\"id\":\"mtakik.teszt1\",\"type\":\"clients\"},{\"id\":\"mtakik.orzse\",\"type\":\"clients\"},{\"id\":\"mtakik.nyme\",\"type\":\"clients\"},{\"id\":\"mtakik.me\",\"type\":\"clients\"},{\"id\":\"mtakik.mtakik\",\"type\":\"clients\"},{\"id\":\"mtakik.szie\",\"type\":\"clients\"},{\"id\":\"mtakik.pte\",\"type\":\"clients\"},{\"id\":\"mtakik.se\",\"type\":\"clients\"},{\"id\":\"mtakik.ceu\",\"type\":\"clients\"},{\"id\":\"mtakik.elte\",\"type\":\"clients\"},{\"id\":\"mtakik.sze\",\"type\":\"clients\"},{\"id\":\"mtakik.andrassy\",\"type\":\"clients\"},{\"id\":\"mtakik.ekf\",\"type\":\"clients\"},{\"id\":\"mtakik.ppke\",\"type\":\"clients\"},{\"id\":\"mtakik.beszedk\",\"type\":\"clients\"},{\"id\":\"mtakik.nytudk\",\"type\":\"clients\"},{\"id\":\"mtakik.hadtud\",\"type\":\"clients\"},{\"id\":\"mtakik.ekfkonf\",\"type\":\"clients\"},{\"id\":\"mtakik.ke\",\"type\":\"clients\"},{\"id\":\"mtakik.mkszle\",\"type\":\"clients\"},{\"id\":\"mtakik.magyep\",\"type\":\"clients\"},{\"id\":\"mtakik.szieett\",\"type\":\"clients\"},{\"id\":\"mtakik.szeett\",\"type\":\"clients\"},{\"id\":\"mtakik.juso\",\"type\":\"clients\"},{\"id\":\"mtakik.mtatk\",\"type\":\"clients\"},{\"id\":\"mtakik.dissarch\",\"type\":\"clients\"},{\"id\":\"mtakik.animwelf\",\"type\":\"clients\"},{\"id\":\"mtakik.tf\",\"type\":\"clients\"},{\"id\":\"mtakik.nke\",\"type\":\"clients\"},{\"id\":\"mtakik.szie-uti\",\"type\":\"clients\"},{\"id\":\"mtakik.alkpsich\",\"type\":\"clients\"},{\"id\":\"mtakik.ecb\",\"type\":\"clients\"},{\"id\":\"mtakik.lfze\",\"type\":\"clients\"},{\"id\":\"mtakik.nymebpk\",\"type\":\"clients\"},{\"id\":\"mtakik.szeeet\",\"type\":\"clients\"},{\"id\":\"mtakik.mtanyti\",\"type\":\"clients\"},{\"id\":\"mtakik.pe\",\"type\":\"clients\"},{\"id\":\"mtakik.ehe\",\"type\":\"clients\"},{\"id\":\"mtakik.szfe\",\"type\":\"clients\"},{\"id\":\"mtakik.kulban\",\"type\":\"clients\"},{\"id\":\"mtakik.elteppk\",\"type\":\"clients\"},{\"id\":\"mtakik.alknyelv\",\"type\":\"clients\"},{\"id\":\"mtakik.moksz\",\"type\":\"clients\"},{\"id\":\"mtakik.eltefon\",\"type\":\"clients\"},{\"id\":\"mtakik.obiomap\",\"type\":\"clients\"},{\"id\":\"mtakik.iri\",\"type\":\"clients\"},{\"id\":\"mtakik.radio\",\"type\":\"clients\"},{\"id\":\"mtakik.omsz\",\"type\":\"clients\"},{\"id\":\"mtakik.bika\",\"type\":\"clients\"},{\"id\":\"mtakik.abpa\",\"type\":\"clients\"},{\"id\":\"mtakik.perfacta\",\"type\":\"clients\"},{\"id\":\"mtakik.regrurum\",\"type\":\"clients\"},{\"id\":\"mtakik.haditech\",\"type\":\"clients\"},{\"id\":\"mtakik.neptanc\",\"type\":\"clients\"},{\"id\":\"mtakik.eke\",\"type\":\"clients\"},{\"id\":\"mtakik.ekekonf\",\"type\":\"clients\"},{\"id\":\"mtakik.mtabtkzi\",\"type\":\"clients\"},{\"id\":\"mtakik.dosz\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.13146\",\"type\":\"prefixes\"},{\"id\":\"10.13147\",\"type\":\"prefixes\"},{\"id\":\"10.14754\",\"type\":\"prefixes\"},{\"id\":\"10.14755\",\"type\":\"prefixes\"},{\"id\":\"10.14750\",\"type\":\"prefixes\"},{\"id\":\"10.14751\",\"type\":\"prefixes\"},{\"id\":\"10.14752\",\"type\":\"prefixes\"},{\"id\":\"10.14753\",\"type\":\"prefixes\"},{\"id\":\"10.15476\",\"type\":\"prefixes\"},{\"id\":\"10.15477\",\"type\":\"prefixes\"},{\"id\":\"10.15774\",\"type\":\"prefixes\"},{\"id\":\"10.15773\",\"type\":\"prefixes\"},{\"id\":\"10.15776\",\"type\":\"prefixes\"},{\"id\":\"10.15775\",\"type\":\"prefixes\"},{\"id\":\"10.15772\",\"type\":\"prefixes\"},{\"id\":\"10.17048\",\"type\":\"prefixes\"},{\"id\":\"10.17047\",\"type\":\"prefixes\"},{\"id\":\"10.17205\",\"type\":\"prefixes\"},{\"id\":\"10.17204\",\"type\":\"prefixes\"},{\"id\":\"10.17203\",\"type\":\"prefixes\"},{\"id\":\"10.17167\",\"type\":\"prefixes\"},{\"id\":\"10.17166\",\"type\":\"prefixes\"},{\"id\":\"10.17168\",\"type\":\"prefixes\"},{\"id\":\"10.17201\",\"type\":\"prefixes\"},{\"id\":\"10.17202\",\"type\":\"prefixes\"},{\"id\":\"10.17626\",\"type\":\"prefixes\"},{\"id\":\"10.17625\",\"type\":\"prefixes\"},{\"id\":\"10.17628\",\"type\":\"prefixes\"},{\"id\":\"10.17627\",\"type\":\"prefixes\"},{\"id\":\"10.17624\",\"type\":\"prefixes\"},{\"id\":\"10.18134\",\"type\":\"prefixes\"},{\"id\":\"10.18135\",\"type\":\"prefixes\"},{\"id\":\"10.18136\",\"type\":\"prefixes\"},{\"id\":\"10.18132\",\"type\":\"prefixes\"},{\"id\":\"10.18133\",\"type\":\"prefixes\"},{\"id\":\"10.18460\",\"type\":\"prefixes\"},{\"id\":\"10.18457\",\"type\":\"prefixes\"},{\"id\":\"10.18458\",\"type\":\"prefixes\"},{\"id\":\"10.18459\",\"type\":\"prefixes\"},{\"id\":\"10.18428\",\"type\":\"prefixes\"},{\"id\":\"10.18427\",\"type\":\"prefixes\"},{\"id\":\"10.18426\",\"type\":\"prefixes\"},{\"id\":\"10.18425\",\"type\":\"prefixes\"},{\"id\":\"10.18424\",\"type\":\"prefixes\"},{\"id\":\"10.18456\",\"type\":\"prefixes\"},{\"id\":\"10.21406\",\"type\":\"prefixes\"},{\"id\":\"10.21407\",\"type\":\"prefixes\"},{\"id\":\"10.21408\",\"type\":\"prefixes\"},{\"id\":\"10.21404\",\"type\":\"prefixes\"},{\"id\":\"10.21405\",\"type\":\"prefixes\"},{\"id\":\"10.23716\",\"type\":\"prefixes\"},{\"id\":\"10.23717\",\"type\":\"prefixes\"},{\"id\":\"10.23714\",\"type\":\"prefixes\"},{\"id\":\"10.23715\",\"type\":\"prefixes\"},{\"id\":\"10.23713\",\"type\":\"prefixes\"}]}}},{\"id\":\"dev\",\"type\":\"providers\",\"attributes\":{\"name\":\"Developer Provider\",\"displayName\":\"Developer Provider\",\"symbol\":\"DEV\",\"website\":null,\"systemEmail\":\"tech@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-01-03T17:11:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"dev.robles\",\"type\":\"clients\"},{\"id\":\"dev.desousa\",\"type\":\"clients\"},{\"id\":\"dev.lee\",\"type\":\"clients\"},{\"id\":\"dev.donoso\",\"type\":\"clients\"},{\"id\":\"dev.unicus\",\"type\":\"clients\"},{\"id\":\"dev.apu\",\"type\":\"clients\"},{\"id\":\"dev.ill\",\"type\":\"clients\"},{\"id\":\"dev.infolab\",\"type\":\"clients\"},{\"id\":\"dev.tuwien\",\"type\":\"clients\"},{\"id\":\"dev.lnec\",\"type\":\"clients\"},{\"id\":\"dev.fit\",\"type\":\"clients\"},{\"id\":\"dev.sab\",\"type\":\"clients\"},{\"id\":\"dev.csir\",\"type\":\"clients\"},{\"id\":\"dev.debrecen\",\"type\":\"clients\"},{\"id\":\"dev.sitntef\",\"type\":\"clients\"},{\"id\":\"dev.morgridge\",\"type\":\"clients\"},{\"id\":\"dev.rtu\",\"type\":\"clients\"},{\"id\":\"dev.adama\",\"type\":\"clients\"},{\"id\":\"dev.gxblqw\",\"type\":\"clients\"},{\"id\":\"dev.lylztj\",\"type\":\"clients\"},{\"id\":\"dev.xwjsse\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.21359\",\"type\":\"prefixes\"},{\"id\":\"10.23673\",\"type\":\"prefixes\"},{\"id\":\"10.33570\",\"type\":\"prefixes\"},{\"id\":\"10.33571\",\"type\":\"prefixes\"},{\"id\":\"10.33572\",\"type\":\"prefixes\"},{\"id\":\"10.70124\",\"type\":\"prefixes\"},{\"id\":\"10.20408\",\"type\":\"prefixes\"},{\"id\":\"10.80034\",\"type\":\"prefixes\"},{\"id\":\"10.80063\",\"type\":\"prefixes\"},{\"id\":\"10.80083\",\"type\":\"prefixes\"},{\"id\":\"10.80096\",\"type\":\"prefixes\"},{\"id\":\"10.80106\",\"type\":\"prefixes\"}]}}},{\"id\":\"tib\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Science and Technology\",\"displayName\":\"German National Library of Science and Technology\",\"symbol\":\"TIB\",\"website\":\"https://www.tib.eu\",\"systemEmail\":\"kj.garza@gmail.com\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":\"https://assets.test.datacite.org/images/members/tib.png?1583994903\",\"memberType\":\"direct_member\",\"organizationType\":\"nationalInstitution\",\"focusArea\":\"engineeringAndTechnology\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04aj4c181\",\"technicalContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dfsfds\",\"familyName\":\"sdffds\"},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"fdsdfs\",\"familyName\":\"fdsfds\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"Hebert@email.com\",\"givenName\":\"dsdsadsa\",\"familyName\":\"dsasd\"},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2020-03-12T06:35:03.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"tib.pangaea\",\"type\":\"clients\"},{\"id\":\"tib.wdcc\",\"type\":\"clients\"},{\"id\":\"tib.ldeo\",\"type\":\"clients\"},{\"id\":\"tib.hzb\",\"type\":\"clients\"},{\"id\":\"tib.ukon\",\"type\":\"clients\"},{\"id\":\"tib.test\",\"type\":\"clients\"},{\"id\":\"tib.ubfr\",\"type\":\"clients\"},{\"id\":\"tib.gfz\",\"type\":\"clients\"},{\"id\":\"tib.kit\",\"type\":\"clients\"},{\"id\":\"tib.kmo\",\"type\":\"clients\"},{\"id\":\"tib.dagst\",\"type\":\"clients\"},{\"id\":\"tib.dgg\",\"type\":\"clients\"},{\"id\":\"tib.ipk\",\"type\":\"clients\"},{\"id\":\"tib.bafg\",\"type\":\"clients\"},{\"id\":\"tib.tum\",\"type\":\"clients\"},{\"id\":\"tib.dwd\",\"type\":\"clients\"},{\"id\":\"tib.wdcrsat\",\"type\":\"clients\"},{\"id\":\"tib.for816\",\"type\":\"clients\"},{\"id\":\"tib.ublmu\",\"type\":\"clients\"},{\"id\":\"tib.eta\",\"type\":\"clients\"},{\"id\":\"tib.hawk\",\"type\":\"clients\"},{\"id\":\"tib.eugraph\",\"type\":\"clients\"},{\"id\":\"tib.thieme\",\"type\":\"clients\"},{\"id\":\"tib.gfzbib\",\"type\":\"clients\"},{\"id\":\"tib.jki\",\"type\":\"clients\"},{\"id\":\"tib.desy\",\"type\":\"clients\"},{\"id\":\"tib.editura\",\"type\":\"clients\"},{\"id\":\"tib.mldata\",\"type\":\"clients\"},{\"id\":\"tib.grips\",\"type\":\"clients\"},{\"id\":\"tib.ama\",\"type\":\"clients\"},{\"id\":\"tib.geozon\",\"type\":\"clients\"},{\"id\":\"tib.ojstest\",\"type\":\"clients\"},{\"id\":\"tib.esr\",\"type\":\"clients\"},{\"id\":\"tib.awi\",\"type\":\"clients\"},{\"id\":\"tib.wip\",\"type\":\"clients\"},{\"id\":\"tib.zalf\",\"type\":\"clients\"},{\"id\":\"tib.ctt\",\"type\":\"clients\"},{\"id\":\"tib.floss\",\"type\":\"clients\"},{\"id\":\"tib.tib\",\"type\":\"clients\"},{\"id\":\"tib.esgar\",\"type\":\"clients\"},{\"id\":\"tib.l3s\",\"type\":\"clients\"},{\"id\":\"tib.escr\",\"type\":\"clients\"},{\"id\":\"tib.adama\",\"type\":\"clients\"},{\"id\":\"tib.kisti\",\"type\":\"clients\"},{\"id\":\"tib.frauke\",\"type\":\"clients\"},{\"id\":\"tib.owpwr\",\"type\":\"clients\"},{\"id\":\"tib.ptb\",\"type\":\"clients\"},{\"id\":\"tib.tub\",\"type\":\"clients\"},{\"id\":\"tib.zib\",\"type\":\"clients\"},{\"id\":\"tib.g-node\",\"type\":\"clients\"},{\"id\":\"tib.epic\",\"type\":\"clients\"},{\"id\":\"tib.r-gate\",\"type\":\"clients\"},{\"id\":\"tib.dspace\",\"type\":\"clients\"},{\"id\":\"tib.kit-2\",\"type\":\"clients\"},{\"id\":\"tib.sba-r\",\"type\":\"clients\"},{\"id\":\"tib.slubdd\",\"type\":\"clients\"},{\"id\":\"tib.ubtum\",\"type\":\"clients\"},{\"id\":\"tib.hog\",\"type\":\"clients\"},{\"id\":\"tib.unibi\",\"type\":\"clients\"},{\"id\":\"tib.joanneum\",\"type\":\"clients\"},{\"id\":\"tib.nld\",\"type\":\"clients\"},{\"id\":\"tib.ife\",\"type\":\"clients\"},{\"id\":\"tib.adlnet\",\"type\":\"clients\"},{\"id\":\"tib.iow\",\"type\":\"clients\"},{\"id\":\"tib.subgoe\",\"type\":\"clients\"},{\"id\":\"tib.earsel\",\"type\":\"clients\"},{\"id\":\"tib.bikf\",\"type\":\"clients\"},{\"id\":\"tib.hsa\",\"type\":\"clients\"},{\"id\":\"tib.rubhb\",\"type\":\"clients\"},{\"id\":\"tib.kit-ioc\",\"type\":\"clients\"},{\"id\":\"tib.hzdr\",\"type\":\"clients\"},{\"id\":\"tib.tuchem\",\"type\":\"clients\"},{\"id\":\"tib.lj-red\",\"type\":\"clients\"},{\"id\":\"tib.hbz\",\"type\":\"clients\"},{\"id\":\"tib.radar\",\"type\":\"clients\"},{\"id\":\"tib.tropos\",\"type\":\"clients\"},{\"id\":\"tib.mfo\",\"type\":\"clients\"},{\"id\":\"tib.gsi\",\"type\":\"clients\"},{\"id\":\"tib.eumetsat\",\"type\":\"clients\"},{\"id\":\"tib.hu\",\"type\":\"clients\"},{\"id\":\"tib.ista\",\"type\":\"clients\"},{\"id\":\"tib.tuhh\",\"type\":\"clients\"},{\"id\":\"tib.luhrepo\",\"type\":\"clients\"},{\"id\":\"tib.ubt\",\"type\":\"clients\"},{\"id\":\"tib.ovgu\",\"type\":\"clients\"},{\"id\":\"tib.hmgu\",\"type\":\"clients\"},{\"id\":\"tib.tudo\",\"type\":\"clients\"},{\"id\":\"tib.ubp\",\"type\":\"clients\"},{\"id\":\"tib.tiho\",\"type\":\"clients\"},{\"id\":\"tib.dlr\",\"type\":\"clients\"},{\"id\":\"tib.ubtdois\",\"type\":\"clients\"},{\"id\":\"tib.fpsc\",\"type\":\"clients\"},{\"id\":\"tib.ubs\",\"type\":\"clients\"},{\"id\":\"tib.kit-imk\",\"type\":\"clients\"},{\"id\":\"tib.mpdl\",\"type\":\"clients\"},{\"id\":\"tib.thw\",\"type\":\"clients\"},{\"id\":\"tib.pub\",\"type\":\"clients\"},{\"id\":\"tib.fuub\",\"type\":\"clients\"},{\"id\":\"tib.doi-ubks\",\"type\":\"clients\"},{\"id\":\"tib.matdat\",\"type\":\"clients\"},{\"id\":\"tib.topoi\",\"type\":\"clients\"},{\"id\":\"tib.ubde\",\"type\":\"clients\"},{\"id\":\"tib.ceontest\",\"type\":\"clients\"},{\"id\":\"tib.kizulm\",\"type\":\"clients\"},{\"id\":\"tib.ufztest\",\"type\":\"clients\"},{\"id\":\"tib.ubmrtest\",\"type\":\"clients\"},{\"id\":\"tib.dlr-eoc\",\"type\":\"clients\"},{\"id\":\"tib.ubmr\",\"type\":\"clients\"},{\"id\":\"tib.dlr-pa\",\"type\":\"clients\"},{\"id\":\"tib.aip\",\"type\":\"clients\"},{\"id\":\"tib.casimir\",\"type\":\"clients\"},{\"id\":\"tib.ulbms\",\"type\":\"clients\"},{\"id\":\"tib.smn-doi\",\"type\":\"clients\"},{\"id\":\"tib.hzg\",\"type\":\"clients\"},{\"id\":\"tib.repod\",\"type\":\"clients\"},{\"id\":\"tib.astone\",\"type\":\"clients\"},{\"id\":\"tib.moredata\",\"type\":\"clients\"},{\"id\":\"tib.eurescom\",\"type\":\"clients\"},{\"id\":\"tib.rwth\",\"type\":\"clients\"},{\"id\":\"tib.hu-mr\",\"type\":\"clients\"},{\"id\":\"tib.baw\",\"type\":\"clients\"},{\"id\":\"tib.hu-edoc\",\"type\":\"clients\"},{\"id\":\"tib.ub-hro\",\"type\":\"clients\"},{\"id\":\"tib.rads\",\"type\":\"clients\"},{\"id\":\"tib.gavo\",\"type\":\"clients\"},{\"id\":\"tib.pap\",\"type\":\"clients\"},{\"id\":\"tib.pku\",\"type\":\"clients\"},{\"id\":\"tib.insci\",\"type\":\"clients\"},{\"id\":\"tib.reikkaps\",\"type\":\"clients\"},{\"id\":\"tib.emisa\",\"type\":\"clients\"},{\"id\":\"tib.hbrs\",\"type\":\"clients\"},{\"id\":\"tib.gidoi\",\"type\":\"clients\"},{\"id\":\"tib.baua\",\"type\":\"clients\"},{\"id\":\"tib.tem\",\"type\":\"clients\"},{\"id\":\"tib.hsd\",\"type\":\"clients\"},{\"id\":\"tib.igb\",\"type\":\"clients\"},{\"id\":\"tib.hu-agep\",\"type\":\"clients\"},{\"id\":\"tib.bonares\",\"type\":\"clients\"},{\"id\":\"tib.unibw\",\"type\":\"clients\"},{\"id\":\"tib.esolib\",\"type\":\"clients\"},{\"id\":\"tib.ubunibwm\",\"type\":\"clients\"},{\"id\":\"tib.handbuch\",\"type\":\"clients\"},{\"id\":\"tib.wias\",\"type\":\"clients\"},{\"id\":\"tib.fhaa\",\"type\":\"clients\"},{\"id\":\"tib.ubcl\",\"type\":\"clients\"},{\"id\":\"tib.fhbac\",\"type\":\"clients\"},{\"id\":\"tib.baua-doi\",\"type\":\"clients\"},{\"id\":\"tib.iiasa\",\"type\":\"clients\"},{\"id\":\"tib.ubkiel\",\"type\":\"clients\"},{\"id\":\"tib.beilst\",\"type\":\"clients\"},{\"id\":\"tib.si\",\"type\":\"clients\"},{\"id\":\"tib.steffen\",\"type\":\"clients\"},{\"id\":\"tib.ubtub\",\"type\":\"clients\"},{\"id\":\"tib.gesah\",\"type\":\"clients\"},{\"id\":\"tib.akbild\",\"type\":\"clients\"},{\"id\":\"tib.gavohd\",\"type\":\"clients\"},{\"id\":\"tib.mdw\",\"type\":\"clients\"},{\"id\":\"tib.isoe\",\"type\":\"clients\"},{\"id\":\"tib.dful\",\"type\":\"clients\"},{\"id\":\"tib.strenda\",\"type\":\"clients\"},{\"id\":\"tib.ubw\",\"type\":\"clients\"},{\"id\":\"tib.goobi\",\"type\":\"clients\"},{\"id\":\"tib.fsujena\",\"type\":\"clients\"},{\"id\":\"tib.ubmainz\",\"type\":\"clients\"},{\"id\":\"tib.axelschn\",\"type\":\"clients\"},{\"id\":\"tib.bsz\",\"type\":\"clients\"},{\"id\":\"tib.tud\",\"type\":\"clients\"},{\"id\":\"tib.grass\",\"type\":\"clients\"},{\"id\":\"tib.geoq\",\"type\":\"clients\"},{\"id\":\"tib.geomar\",\"type\":\"clients\"},{\"id\":\"tib.sulbdoi\",\"type\":\"clients\"},{\"id\":\"tib.ubgi\",\"type\":\"clients\"},{\"id\":\"tib.regener\",\"type\":\"clients\"},{\"id\":\"tib.apeiron\",\"type\":\"clients\"},{\"id\":\"tib.medmat\",\"type\":\"clients\"},{\"id\":\"tib.dbu\",\"type\":\"clients\"},{\"id\":\"tib.ibidem\",\"type\":\"clients\"},{\"id\":\"tib.hsuhh\",\"type\":\"clients\"},{\"id\":\"tib.dbfz\",\"type\":\"clients\"},{\"id\":\"tib.lars\",\"type\":\"clients\"},{\"id\":\"tib.dalhaus\",\"type\":\"clients\"},{\"id\":\"tib.fraunirb\",\"type\":\"clients\"},{\"id\":\"tib.kfugraz\",\"type\":\"clients\"},{\"id\":\"tib.gottscha\",\"type\":\"clients\"},{\"id\":\"tib.univie\",\"type\":\"clients\"},{\"id\":\"tib.zih\",\"type\":\"clients\"},{\"id\":\"tib.euramet\",\"type\":\"clients\"},{\"id\":\"tib.ulbd\",\"type\":\"clients\"},{\"id\":\"tib.vzg\",\"type\":\"clients\"},{\"id\":\"tib.hawkhhg\",\"type\":\"clients\"},{\"id\":\"tib.fizan\",\"type\":\"clients\"},{\"id\":\"tib.fub\",\"type\":\"clients\"},{\"id\":\"tib.uber\",\"type\":\"clients\"},{\"id\":\"tib.hpberg\",\"type\":\"clients\"},{\"id\":\"tib.fdmuh\",\"type\":\"clients\"},{\"id\":\"tib.rmn\",\"type\":\"clients\"},{\"id\":\"tib.sascha\",\"type\":\"clients\"},{\"id\":\"tib.decathlon\",\"type\":\"clients\"},{\"id\":\"tib.newtest\",\"type\":\"clients\"},{\"id\":\"tib.testclientid\",\"type\":\"clients\"},{\"id\":\"tib.elibtest\",\"type\":\"clients\"},{\"id\":\"tib.hpi\",\"type\":\"clients\"},{\"id\":\"tib.ult\",\"type\":\"clients\"},{\"id\":\"tib.hefdi\",\"type\":\"clients\"},{\"id\":\"tib.ubsalz\",\"type\":\"clients\"},{\"id\":\"tib.weimar\",\"type\":\"clients\"},{\"id\":\"tib.boku\",\"type\":\"clients\"},{\"id\":\"tib.tube\",\"type\":\"clients\"},{\"id\":\"tib.hebis\",\"type\":\"clients\"},{\"id\":\"tib.howltest\",\"type\":\"clients\"},{\"id\":\"tib.tuk-ub\",\"type\":\"clients\"},{\"id\":\"tib.ubosna\",\"type\":\"clients\"},{\"id\":\"tib.liag\",\"type\":\"clients\"},{\"id\":\"tib.jessika\",\"type\":\"clients\"},{\"id\":\"tib.zimtest\",\"type\":\"clients\"},{\"id\":\"tib.zib-test\",\"type\":\"clients\"},{\"id\":\"tib.zibtest\",\"type\":\"clients\"},{\"id\":\"tib.fis-gp\",\"type\":\"clients\"},{\"id\":\"tib.mediarep\",\"type\":\"clients\"},{\"id\":\"tib.inp\",\"type\":\"clients\"},{\"id\":\"tib.test-ubaug\",\"type\":\"clients\"},{\"id\":\"tib.test-fatub\",\"type\":\"clients\"},{\"id\":\"tib.test-snsd\",\"type\":\"clients\"},{\"id\":\"tib.test-mhh\",\"type\":\"clients\"},{\"id\":\"tib.test-ioer\",\"type\":\"clients\"},{\"id\":\"tib.leopoldina\",\"type\":\"clients\"},{\"id\":\"tib.test-upotsdam\",\"type\":\"clients\"},{\"id\":\"tib.test-fzj\",\"type\":\"clients\"},{\"id\":\"tib.btu\",\"type\":\"clients\"},{\"id\":\"tib.test-hsh\",\"type\":\"clients\"},{\"id\":\"tib.test-bam\",\"type\":\"clients\"},{\"id\":\"tib.jena-rz\",\"type\":\"clients\"},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"},{\"id\":\"tib.test-ostfalia\",\"type\":\"clients\"},{\"id\":\"tib.test-tibrepo\",\"type\":\"clients\"},{\"id\":\"tib.test-hse\",\"type\":\"clients\"},{\"id\":\"tib.test-stabi\",\"type\":\"clients\"},{\"id\":\"tib.test-siegen\",\"type\":\"clients\"},{\"id\":\"tib.atmodat\",\"type\":\"clients\"},{\"id\":\"tib.fid-move\",\"type\":\"clients\"},{\"id\":\"tib.haw\",\"type\":\"clients\"},{\"id\":\"tib.test-eyvor\",\"type\":\"clients\"},{\"id\":\"tib.dainst\",\"type\":\"clients\"},{\"id\":\"tib.test-thulb\",\"type\":\"clients\"},{\"id\":\"tib.test-ifw\",\"type\":\"clients\"},{\"id\":\"tib.test-fhv\",\"type\":\"clients\"},{\"id\":\"tib.test-ffe\",\"type\":\"clients\"},{\"id\":\"tib.test-iisks\",\"type\":\"clients\"},{\"id\":\"tib.test-suub\",\"type\":\"clients\"},{\"id\":\"tib.confident-test\",\"type\":\"clients\"},{\"id\":\"tib.trr170-db\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.1594\",\"type\":\"prefixes\"},{\"id\":\"10.2311\",\"type\":\"prefixes\"},{\"id\":\"10.2312\",\"type\":\"prefixes\"},{\"id\":\"10.2313\",\"type\":\"prefixes\"},{\"id\":\"10.2314\",\"type\":\"prefixes\"},{\"id\":\"10.2315\",\"type\":\"prefixes\"},{\"id\":\"10.3203\",\"type\":\"prefixes\"},{\"id\":\"10.3204\",\"type\":\"prefixes\"},{\"id\":\"10.3205\",\"type\":\"prefixes\"},{\"id\":\"10.4118\",\"type\":\"prefixes\"},{\"id\":\"10.4125\",\"type\":\"prefixes\"},{\"id\":\"10.4228\",\"type\":\"prefixes\"},{\"id\":\"10.4229\",\"type\":\"prefixes\"},{\"id\":\"10.4230\",\"type\":\"prefixes\"},{\"id\":\"10.5071\",\"type\":\"prefixes\"},{\"id\":\"10.5073\",\"type\":\"prefixes\"},{\"id\":\"10.5161\",\"type\":\"prefixes\"},{\"id\":\"10.5162\",\"type\":\"prefixes\"},{\"id\":\"10.5165\",\"type\":\"prefixes\"},{\"id\":\"10.5277\",\"type\":\"prefixes\"},{\"id\":\"10.5282\",\"type\":\"prefixes\"},{\"id\":\"10.5288\",\"type\":\"prefixes\"},{\"id\":\"10.5441\",\"type\":\"prefixes\"},{\"id\":\"10.5442\",\"type\":\"prefixes\"},{\"id\":\"10.4119\",\"type\":\"prefixes\"},{\"id\":\"10.5444\",\"type\":\"prefixes\"},{\"id\":\"10.5445\",\"type\":\"prefixes\"},{\"id\":\"10.5446\",\"type\":\"prefixes\"},{\"id\":\"10.5447\",\"type\":\"prefixes\"},{\"id\":\"10.5675\",\"type\":\"prefixes\"},{\"id\":\"10.5676\",\"type\":\"prefixes\"},{\"id\":\"10.5678\",\"type\":\"prefixes\"},{\"id\":\"10.5679\",\"type\":\"prefixes\"},{\"id\":\"10.5682\",\"type\":\"prefixes\"},{\"id\":\"10.5880\",\"type\":\"prefixes\"},{\"id\":\"10.5881\",\"type\":\"prefixes\"},{\"id\":\"10.5968\",\"type\":\"prefixes\"},{\"id\":\"10.5969\",\"type\":\"prefixes\"},{\"id\":\"10.5970\",\"type\":\"prefixes\"},{\"id\":\"10.5971\",\"type\":\"prefixes\"},{\"id\":\"10.5972\",\"type\":\"prefixes\"},{\"id\":\"10.5973\",\"type\":\"prefixes\"},{\"id\":\"10.5974\",\"type\":\"prefixes\"},{\"id\":\"10.5975\",\"type\":\"prefixes\"},{\"id\":\"10.5976\",\"type\":\"prefixes\"},{\"id\":\"10.3285\",\"type\":\"prefixes\"},{\"id\":\"10.6094\",\"type\":\"prefixes\"},{\"id\":\"10.6095\",\"type\":\"prefixes\"},{\"id\":\"10.7795\",\"type\":\"prefixes\"},{\"id\":\"10.0123\",\"type\":\"prefixes\"},{\"id\":\"10.0125\",\"type\":\"prefixes\"},{\"id\":\"10.0126\",\"type\":\"prefixes\"},{\"id\":\"10.01234\",\"type\":\"prefixes\"},{\"id\":\"10.0042\",\"type\":\"prefixes\"},{\"id\":\"10.12751\",\"type\":\"prefixes\"},{\"id\":\"10.0127\",\"type\":\"prefixes\"},{\"id\":\"10.0128\",\"type\":\"prefixes\"},{\"id\":\"10.0129\",\"type\":\"prefixes\"},{\"id\":\"10.0001\",\"type\":\"prefixes\"},{\"id\":\"10.0002\",\"type\":\"prefixes\"},{\"id\":\"10.0003\",\"type\":\"prefixes\"},{\"id\":\"10.0133\",\"type\":\"prefixes\"},{\"id\":\"10.0131\",\"type\":\"prefixes\"},{\"id\":\"10.0132\",\"type\":\"prefixes\"},{\"id\":\"10.0130\",\"type\":\"prefixes\"},{\"id\":\"10.0135\",\"type\":\"prefixes\"},{\"id\":\"10.0134\",\"type\":\"prefixes\"},{\"id\":\"10.013\",\"type\":\"prefixes\"},{\"id\":\"10.13141\",\"type\":\"prefixes\"},{\"id\":\"10.14459\",\"type\":\"prefixes\"},{\"id\":\"10.7483\",\"type\":\"prefixes\"},{\"id\":\"10.7484\",\"type\":\"prefixes\"},{\"id\":\"10.7485\",\"type\":\"prefixes\"},{\"id\":\"10.7800\",\"type\":\"prefixes\"},{\"id\":\"10.11576\",\"type\":\"prefixes\"},{\"id\":\"10.11589\",\"type\":\"prefixes\"},{\"id\":\"10.12752\",\"type\":\"prefixes\"},{\"id\":\"10.12753\",\"type\":\"prefixes\"},{\"id\":\"10.12754\",\"type\":\"prefixes\"},{\"id\":\"10.12760\",\"type\":\"prefixes\"},{\"id\":\"10.12761\",\"type\":\"prefixes\"},{\"id\":\"10.3249\",\"type\":\"prefixes\"},{\"id\":\"10.13154\",\"type\":\"prefixes\"},{\"id\":\"10.13140\",\"type\":\"prefixes\"},{\"id\":\"10.13142\",\"type\":\"prefixes\"},{\"id\":\"10.14278\",\"type\":\"prefixes\"},{\"id\":\"10.14279\",\"type\":\"prefixes\"},{\"id\":\"10.14272\",\"type\":\"prefixes\"},{\"id\":\"10.14463\",\"type\":\"prefixes\"},{\"id\":\"10.14470\",\"type\":\"prefixes\"},{\"id\":\"10.14464\",\"type\":\"prefixes\"},{\"id\":\"10.14454\",\"type\":\"prefixes\"},{\"id\":\"10.0139\",\"type\":\"prefixes\"},{\"id\":\"10.0137\",\"type\":\"prefixes\"},{\"id\":\"10.0136\",\"type\":\"prefixes\"},{\"id\":\"10.14760\",\"type\":\"prefixes\"},{\"id\":\"10.14759\",\"type\":\"prefixes\"},{\"id\":\"10.2195\",\"type\":\"prefixes\"},{\"id\":\"10.15120\",\"type\":\"prefixes\"},{\"id\":\"10.15134\",\"type\":\"prefixes\"},{\"id\":\"10.15479\",\"type\":\"prefixes\"},{\"id\":\"10.15488\",\"type\":\"prefixes\"},{\"id\":\"10.15487\",\"type\":\"prefixes\"},{\"id\":\"10.15489\",\"type\":\"prefixes\"},{\"id\":\"10.15495\",\"type\":\"prefixes\"},{\"id\":\"10.15496\",\"type\":\"prefixes\"},{\"id\":\"10.15475\",\"type\":\"prefixes\"},{\"id\":\"10.15467\",\"type\":\"prefixes\"},{\"id\":\"10.15503\",\"type\":\"prefixes\"},{\"id\":\"10.15480\",\"type\":\"prefixes\"},{\"id\":\"10.15481\",\"type\":\"prefixes\"},{\"id\":\"10.15769\",\"type\":\"prefixes\"},{\"id\":\"10.15771\",\"type\":\"prefixes\"},{\"id\":\"10.15770\",\"type\":\"prefixes\"},{\"id\":\"10.17191\",\"type\":\"prefixes\"},{\"id\":\"10.17192\",\"type\":\"prefixes\"},{\"id\":\"10.17172\",\"type\":\"prefixes\"},{\"id\":\"10.17171\",\"type\":\"prefixes\"},{\"id\":\"10.17170\",\"type\":\"prefixes\"},{\"id\":\"10.17185\",\"type\":\"prefixes\"},{\"id\":\"10.17169\",\"type\":\"prefixes\"},{\"id\":\"10.17617\",\"type\":\"prefixes\"},{\"id\":\"10.17618\",\"type\":\"prefixes\"},{\"id\":\"10.014\",\"type\":\"prefixes\"},{\"id\":\"10.015\",\"type\":\"prefixes\"},{\"id\":\"10.0149\",\"type\":\"prefixes\"},{\"id\":\"10.0148\",\"type\":\"prefixes\"},{\"id\":\"10.0145\",\"type\":\"prefixes\"},{\"id\":\"10.0144\",\"type\":\"prefixes\"},{\"id\":\"10.0147\",\"type\":\"prefixes\"},{\"id\":\"10.0146\",\"type\":\"prefixes\"},{\"id\":\"10.0140\",\"type\":\"prefixes\"},{\"id\":\"10.0150\",\"type\":\"prefixes\"},{\"id\":\"10.0141\",\"type\":\"prefixes\"},{\"id\":\"10.0142\",\"type\":\"prefixes\"},{\"id\":\"10.0143\",\"type\":\"prefixes\"},{\"id\":\"10.0160\",\"type\":\"prefixes\"},{\"id\":\"10.0153\",\"type\":\"prefixes\"},{\"id\":\"10.0154\",\"type\":\"prefixes\"},{\"id\":\"10.0151\",\"type\":\"prefixes\"},{\"id\":\"10.0152\",\"type\":\"prefixes\"},{\"id\":\"10.17879\",\"type\":\"prefixes\"},{\"id\":\"10.17878\",\"type\":\"prefixes\"},{\"id\":\"10.17877\",\"type\":\"prefixes\"},{\"id\":\"10.17876\",\"type\":\"prefixes\"},{\"id\":\"10.17875\",\"type\":\"prefixes\"},{\"id\":\"10.17874\",\"type\":\"prefixes\"},{\"id\":\"10.17880\",\"type\":\"prefixes\"},{\"id\":\"10.17871\",\"type\":\"prefixes\"},{\"id\":\"10.17872\",\"type\":\"prefixes\"},{\"id\":\"10.17873\",\"type\":\"prefixes\"},{\"id\":\"10.18171\",\"type\":\"prefixes\"},{\"id\":\"10.18170\",\"type\":\"prefixes\"},{\"id\":\"10.18169\",\"type\":\"prefixes\"},{\"id\":\"10.18150\",\"type\":\"prefixes\"},{\"id\":\"10.18151\",\"type\":\"prefixes\"},{\"id\":\"10.18152\",\"type\":\"prefixes\"},{\"id\":\"10.18153\",\"type\":\"prefixes\"},{\"id\":\"10.18154\",\"type\":\"prefixes\"},{\"id\":\"10.18155\",\"type\":\"prefixes\"},{\"id\":\"10.18156\",\"type\":\"prefixes\"},{\"id\":\"10.18149\",\"type\":\"prefixes\"},{\"id\":\"10.18147\",\"type\":\"prefixes\"},{\"id\":\"10.18148\",\"type\":\"prefixes\"},{\"id\":\"10.18420\",\"type\":\"prefixes\"},{\"id\":\"10.18421\",\"type\":\"prefixes\"},{\"id\":\"10.18422\",\"type\":\"prefixes\"},{\"id\":\"10.18418\",\"type\":\"prefixes\"},{\"id\":\"10.18417\",\"type\":\"prefixes\"},{\"id\":\"10.18419\",\"type\":\"prefixes\"},{\"id\":\"10.18416\",\"type\":\"prefixes\"},{\"id\":\"10.18452\",\"type\":\"prefixes\"},{\"id\":\"10.18451\",\"type\":\"prefixes\"},{\"id\":\"10.18450\",\"type\":\"prefixes\"},{\"id\":\"10.18454\",\"type\":\"prefixes\"},{\"id\":\"10.18453\",\"type\":\"prefixes\"},{\"id\":\"10.18729\",\"type\":\"prefixes\"},{\"id\":\"10.18728\",\"type\":\"prefixes\"},{\"id\":\"10.18727\",\"type\":\"prefixes\"},{\"id\":\"10.18726\",\"type\":\"prefixes\"},{\"id\":\"10.18725\",\"type\":\"prefixes\"},{\"id\":\"10.20385\",\"type\":\"prefixes\"},{\"id\":\"10.20347\",\"type\":\"prefixes\"},{\"id\":\"10.20346\",\"type\":\"prefixes\"},{\"id\":\"10.20388\",\"type\":\"prefixes\"},{\"id\":\"10.20389\",\"type\":\"prefixes\"},{\"id\":\"10.20386\",\"type\":\"prefixes\"},{\"id\":\"10.20387\",\"type\":\"prefixes\"},{\"id\":\"10.20345\",\"type\":\"prefixes\"},{\"id\":\"10.2390\",\"type\":\"prefixes\"},{\"id\":\"10.0177\",\"type\":\"prefixes\"},{\"id\":\"10.0178\",\"type\":\"prefixes\"},{\"id\":\"10.0179\",\"type\":\"prefixes\"},{\"id\":\"10.0180\",\"type\":\"prefixes\"},{\"id\":\"10.0161\",\"type\":\"prefixes\"},{\"id\":\"10.0172\",\"type\":\"prefixes\"},{\"id\":\"10.0162\",\"type\":\"prefixes\"},{\"id\":\"10.0173\",\"type\":\"prefixes\"},{\"id\":\"10.0163\",\"type\":\"prefixes\"},{\"id\":\"10.0174\",\"type\":\"prefixes\"},{\"id\":\"10.0164\",\"type\":\"prefixes\"},{\"id\":\"10.0175\",\"type\":\"prefixes\"},{\"id\":\"10.0176\",\"type\":\"prefixes\"},{\"id\":\"10.21267\",\"type\":\"prefixes\"},{\"id\":\"10.21266\",\"type\":\"prefixes\"},{\"id\":\"10.21269\",\"type\":\"prefixes\"},{\"id\":\"10.21268\",\"type\":\"prefixes\"},{\"id\":\"10.21265\",\"type\":\"prefixes\"},{\"id\":\"10.21396\",\"type\":\"prefixes\"},{\"id\":\"10.21398\",\"type\":\"prefixes\"},{\"id\":\"10.21402\",\"type\":\"prefixes\"},{\"id\":\"10.21935\",\"type\":\"prefixes\"},{\"id\":\"10.21934\",\"type\":\"prefixes\"},{\"id\":\"10.21937\",\"type\":\"prefixes\"},{\"id\":\"10.21936\",\"type\":\"prefixes\"},{\"id\":\"10.21938\",\"type\":\"prefixes\"},{\"id\":\"10.21939\",\"type\":\"prefixes\"},{\"id\":\"10.22033\",\"type\":\"prefixes\"},{\"id\":\"10.22032\",\"type\":\"prefixes\"},{\"id\":\"10.22029\",\"type\":\"prefixes\"},{\"id\":\"10.22022\",\"type\":\"prefixes\"},{\"id\":\"10.22028\",\"type\":\"prefixes\"},{\"id\":\"10.22027\",\"type\":\"prefixes\"},{\"id\":\"10.22030\",\"type\":\"prefixes\"},{\"id\":\"10.22031\",\"type\":\"prefixes\"},{\"id\":\"10.21941\",\"type\":\"prefixes\"},{\"id\":\"10.22011\",\"type\":\"prefixes\"},{\"id\":\"10.21940\",\"type\":\"prefixes\"},{\"id\":\"10.22000\",\"type\":\"prefixes\"},{\"id\":\"10.0254\",\"type\":\"prefixes\"},{\"id\":\"10.0255\",\"type\":\"prefixes\"},{\"id\":\"10.0234\",\"type\":\"prefixes\"},{\"id\":\"10.0256\",\"type\":\"prefixes\"},{\"id\":\"10.0235\",\"type\":\"prefixes\"},{\"id\":\"10.0257\",\"type\":\"prefixes\"},{\"id\":\"10.0236\",\"type\":\"prefixes\"},{\"id\":\"10.0258\",\"type\":\"prefixes\"},{\"id\":\"10.0237\",\"type\":\"prefixes\"},{\"id\":\"10.0259\",\"type\":\"prefixes\"},{\"id\":\"10.0238\",\"type\":\"prefixes\"},{\"id\":\"10.0239\",\"type\":\"prefixes\"},{\"id\":\"10.0250\",\"type\":\"prefixes\"},{\"id\":\"10.0251\",\"type\":\"prefixes\"},{\"id\":\"10.0252\",\"type\":\"prefixes\"},{\"id\":\"10.0253\",\"type\":\"prefixes\"},{\"id\":\"10.0243\",\"type\":\"prefixes\"},{\"id\":\"10.0244\",\"type\":\"prefixes\"},{\"id\":\"10.0245\",\"type\":\"prefixes\"},{\"id\":\"10.0246\",\"type\":\"prefixes\"},{\"id\":\"10.0247\",\"type\":\"prefixes\"},{\"id\":\"10.0248\",\"type\":\"prefixes\"},{\"id\":\"10.0249\",\"type\":\"prefixes\"},{\"id\":\"10.0240\",\"type\":\"prefixes\"},{\"id\":\"10.0241\",\"type\":\"prefixes\"},{\"id\":\"10.0242\",\"type\":\"prefixes\"},{\"id\":\"10.23671\",\"type\":\"prefixes\"},{\"id\":\"10.23672\",\"type\":\"prefixes\"},{\"id\":\"10.24395\",\"type\":\"prefixes\"},{\"id\":\"10.24396\",\"type\":\"prefixes\"},{\"id\":\"10.24393\",\"type\":\"prefixes\"},{\"id\":\"10.24394\",\"type\":\"prefixes\"},{\"id\":\"10.24391\",\"type\":\"prefixes\"},{\"id\":\"10.24392\",\"type\":\"prefixes\"},{\"id\":\"10.0317\",\"type\":\"prefixes\"},{\"id\":\"10.0318\",\"type\":\"prefixes\"},{\"id\":\"10.0319\",\"type\":\"prefixes\"},{\"id\":\"10.0313\",\"type\":\"prefixes\"},{\"id\":\"10.0314\",\"type\":\"prefixes\"},{\"id\":\"10.0315\",\"type\":\"prefixes\"},{\"id\":\"10.0316\",\"type\":\"prefixes\"},{\"id\":\"10.0328\",\"type\":\"prefixes\"},{\"id\":\"10.0329\",\"type\":\"prefixes\"},{\"id\":\"10.0323\",\"type\":\"prefixes\"},{\"id\":\"10.0324\",\"type\":\"prefixes\"},{\"id\":\"10.0325\",\"type\":\"prefixes\"},{\"id\":\"10.0327\",\"type\":\"prefixes\"},{\"id\":\"10.70013\",\"type\":\"prefixes\"},{\"id\":\"10.70014\",\"type\":\"prefixes\"},{\"id\":\"10.70015\",\"type\":\"prefixes\"},{\"id\":\"10.70016\",\"type\":\"prefixes\"},{\"id\":\"10.70017\",\"type\":\"prefixes\"},{\"id\":\"10.70037\",\"type\":\"prefixes\"},{\"id\":\"10.70040\",\"type\":\"prefixes\"},{\"id\":\"10.0854\",\"type\":\"prefixes\"},{\"id\":\"10.33578\",\"type\":\"prefixes\"},{\"id\":\"10.70127\",\"type\":\"prefixes\"},{\"id\":\"10.7950\",\"type\":\"prefixes\"},{\"id\":\"10.7951\",\"type\":\"prefixes\"},{\"id\":\"10.7952\",\"type\":\"prefixes\"},{\"id\":\"10.7960\",\"type\":\"prefixes\"},{\"id\":\"10.7949\",\"type\":\"prefixes\"},{\"id\":\"10.7953\",\"type\":\"prefixes\"},{\"id\":\"10.7954\",\"type\":\"prefixes\"},{\"id\":\"10.80084\",\"type\":\"prefixes\"},{\"id\":\"10.80086\",\"type\":\"prefixes\"},{\"id\":\"10.80061\",\"type\":\"prefixes\"},{\"id\":\"10.80097\",\"type\":\"prefixes\"},{\"id\":\"10.80156\",\"type\":\"prefixes\"},{\"id\":\"10.80159\",\"type\":\"prefixes\"},{\"id\":\"10.80199\",\"type\":\"prefixes\"}]}}},{\"id\":\"crui\",\"type\":\"providers\",\"attributes\":{\"name\":\"Conferenza dei Rettori delle Università Italiane\",\"displayName\":\"Conferenza dei Rettori delle Università Italiane\",\"symbol\":\"CRUI\",\"website\":null,\"systemEmail\":\"delledon@libero.it\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-21T09:45:24.000Z\",\"updated\":\"2018-08-26T01:25:40.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"crui.unina\",\"type\":\"clients\"},{\"id\":\"crui.unibo\",\"type\":\"clients\"},{\"id\":\"crui.unimi\",\"type\":\"clients\"},{\"id\":\"crui.unica\",\"type\":\"clients\"},{\"id\":\"crui.unito\",\"type\":\"clients\"},{\"id\":\"crui.polito\",\"type\":\"clients\"},{\"id\":\"crui.uniroma1\",\"type\":\"clients\"},{\"id\":\"crui.unifi\",\"type\":\"clients\"},{\"id\":\"crui.unibz\",\"type\":\"clients\"},{\"id\":\"crui.unical\",\"type\":\"clients\"},{\"id\":\"crui.imtlucca\",\"type\":\"clients\"},{\"id\":\"crui.univr\",\"type\":\"clients\"},{\"id\":\"crui.luiss\",\"type\":\"clients\"},{\"id\":\"crui.unipi\",\"type\":\"clients\"},{\"id\":\"crui.ogsts\",\"type\":\"clients\"},{\"id\":\"crui.ingv\",\"type\":\"clients\"},{\"id\":\"crui.evk2cnr\",\"type\":\"clients\"},{\"id\":\"crui.unime\",\"type\":\"clients\"},{\"id\":\"crui.unipv\",\"type\":\"clients\"},{\"id\":\"crui.unibg\",\"type\":\"clients\"},{\"id\":\"crui.uniroma3\",\"type\":\"clients\"},{\"id\":\"crui.gem\",\"type\":\"clients\"},{\"id\":\"crui.unile\",\"type\":\"clients\"},{\"id\":\"crui.units\",\"type\":\"clients\"},{\"id\":\"crui.unimc\",\"type\":\"clients\"},{\"id\":\"crui.unisa\",\"type\":\"clients\"},{\"id\":\"crui.unifg\",\"type\":\"clients\"},{\"id\":\"crui.uniss\",\"type\":\"clients\"},{\"id\":\"crui.uniurb\",\"type\":\"clients\"},{\"id\":\"crui.unive\",\"type\":\"clients\"},{\"id\":\"crui.unife\",\"type\":\"clients\"},{\"id\":\"crui.infncnaf\",\"type\":\"clients\"},{\"id\":\"crui.uniba\",\"type\":\"clients\"},{\"id\":\"crui.sipr\",\"type\":\"clients\"},{\"id\":\"crui.eucentre\",\"type\":\"clients\"},{\"id\":\"crui.unicam\",\"type\":\"clients\"},{\"id\":\"crui.unitelma\",\"type\":\"clients\"},{\"id\":\"crui.unige\",\"type\":\"clients\"},{\"id\":\"crui.unitn\",\"type\":\"clients\"},{\"id\":\"crui.unict\",\"type\":\"clients\"},{\"id\":\"crui.univaq\",\"type\":\"clients\"},{\"id\":\"crui.unimib\",\"type\":\"clients\"},{\"id\":\"crui.crui\",\"type\":\"clients\"},{\"id\":\"crui.sie-l\",\"type\":\"clients\"},{\"id\":\"crui.aphrc\",\"type\":\"clients\"},{\"id\":\"crui.ekocon\",\"type\":\"clients\"},{\"id\":\"crui.unipd\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.6092\",\"type\":\"prefixes\"},{\"id\":\"10.6093\",\"type\":\"prefixes\"},{\"id\":\"10.1285\",\"type\":\"prefixes\"},{\"id\":\"10.13132\",\"type\":\"prefixes\"},{\"id\":\"10.13131\",\"type\":\"prefixes\"},{\"id\":\"10.13130\",\"type\":\"prefixes\"},{\"id\":\"10.13128\",\"type\":\"prefixes\"},{\"id\":\"10.13129\",\"type\":\"prefixes\"},{\"id\":\"10.13126\",\"type\":\"prefixes\"},{\"id\":\"10.13127\",\"type\":\"prefixes\"},{\"id\":\"10.13124\",\"type\":\"prefixes\"},{\"id\":\"10.13125\",\"type\":\"prefixes\"},{\"id\":\"10.13122\",\"type\":\"prefixes\"},{\"id\":\"10.13123\",\"type\":\"prefixes\"},{\"id\":\"10.13121\",\"type\":\"prefixes\"},{\"id\":\"10.13120\",\"type\":\"prefixes\"},{\"id\":\"10.13137\",\"type\":\"prefixes\"},{\"id\":\"10.13138\",\"type\":\"prefixes\"},{\"id\":\"10.13133\",\"type\":\"prefixes\"},{\"id\":\"10.13134\",\"type\":\"prefixes\"},{\"id\":\"10.13116\",\"type\":\"prefixes\"},{\"id\":\"10.13135\",\"type\":\"prefixes\"},{\"id\":\"10.13117\",\"type\":\"prefixes\"},{\"id\":\"10.13136\",\"type\":\"prefixes\"},{\"id\":\"10.13118\",\"type\":\"prefixes\"},{\"id\":\"10.13119\",\"type\":\"prefixes\"},{\"id\":\"10.14277\",\"type\":\"prefixes\"},{\"id\":\"10.14273\",\"type\":\"prefixes\"},{\"id\":\"10.14274\",\"type\":\"prefixes\"},{\"id\":\"10.14275\",\"type\":\"prefixes\"},{\"id\":\"10.14276\",\"type\":\"prefixes\"},{\"id\":\"10.15160\",\"type\":\"prefixes\"},{\"id\":\"10.15161\",\"type\":\"prefixes\"},{\"id\":\"10.15162\",\"type\":\"prefixes\"},{\"id\":\"10.15163\",\"type\":\"prefixes\"},{\"id\":\"10.15164\",\"type\":\"prefixes\"},{\"id\":\"10.15165\",\"type\":\"prefixes\"},{\"id\":\"10.15166\",\"type\":\"prefixes\"},{\"id\":\"10.15167\",\"type\":\"prefixes\"},{\"id\":\"10.15168\",\"type\":\"prefixes\"},{\"id\":\"10.15169\",\"type\":\"prefixes\"},{\"id\":\"10.20371\",\"type\":\"prefixes\"},{\"id\":\"10.20372\",\"type\":\"prefixes\"},{\"id\":\"10.20373\",\"type\":\"prefixes\"},{\"id\":\"10.20374\",\"type\":\"prefixes\"},{\"id\":\"10.20366\",\"type\":\"prefixes\"},{\"id\":\"10.20367\",\"type\":\"prefixes\"},{\"id\":\"10.20365\",\"type\":\"prefixes\"},{\"id\":\"10.20368\",\"type\":\"prefixes\"},{\"id\":\"10.20369\",\"type\":\"prefixes\"},{\"id\":\"10.20370\",\"type\":\"prefixes\"},{\"id\":\"10.7340\",\"type\":\"prefixes\"},{\"id\":\"10.4429\",\"type\":\"prefixes\"}]}}},{\"id\":\"aafc\",\"type\":\"providers\",\"attributes\":{\"name\":\"Agriculture and Agri-Food Canada\",\"displayName\":\"Agriculture and Agri-Food Canada\",\"symbol\":\"AAFC\",\"website\":null,\"systemEmail\":\"Susan.Rizak@canada.ca\",\"groupEmail\":null,\"description\":null,\"region\":\"AMER\",\"country\":\"CA\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":\"governmentAgency\",\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/051dzs374\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"Susan.Rizak@canada.ca\",\"givenName\":\"Susan\",\"familyName\":\"Rizak\"},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2020-04-22T20:25:42.000Z\",\"updated\":\"2020-04-22T21:53:57.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}}}},{\"id\":\"subgoe\",\"type\":\"providers\",\"attributes\":{\"name\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"displayName\":\"Niedersächsische Staats- und Universitätsbibliothek Göttingen\",\"symbol\":\"SUBGOE\",\"website\":null,\"systemEmail\":\"gnadt@sub.uni-goettingen.de\",\"groupEmail\":null,\"description\":null,\"region\":null,\"country\":null,\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2016-02-04T14:17:37.000Z\",\"updated\":\"2019-01-11T13:03:56.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed\",\"type\":\"providers\",\"attributes\":{\"name\":\"German National Library of Medicine\",\"displayName\":\"German National Library of Medicine\",\"symbol\":\"ZBMED\",\"website\":null,\"systemEmail\":\"doi-service@zbmed.de\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"medicalAndHealthSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2019-02-07T10:05:26.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"zbmed.pf\",\"type\":\"clients\"},{\"id\":\"zbmed.gms\",\"type\":\"clients\"},{\"id\":\"zbmed.emp\",\"type\":\"clients\"},{\"id\":\"zbmed.ellinet\",\"type\":\"clients\"},{\"id\":\"zbmed.hernia\",\"type\":\"clients\"},{\"id\":\"zbmed.pallia\",\"type\":\"clients\"},{\"id\":\"zbmed.vh\",\"type\":\"clients\"},{\"id\":\"zbmed.vjvrs\",\"type\":\"clients\"},{\"id\":\"zbmed.gentner\",\"type\":\"clients\"},{\"id\":\"zbmed.tabriz\",\"type\":\"clients\"},{\"id\":\"zbmed.dhl\",\"type\":\"clients\"},{\"id\":\"zbmed.eaaci\",\"type\":\"clients\"},{\"id\":\"zbmed.ibj\",\"type\":\"clients\"},{\"id\":\"zbmed.dkfz\",\"type\":\"clients\"},{\"id\":\"zbmed.psymet\",\"type\":\"clients\"},{\"id\":\"zbmed.aezq\",\"type\":\"clients\"},{\"id\":\"zbmed.mfn\",\"type\":\"clients\"},{\"id\":\"zbmed.fbn\",\"type\":\"clients\"},{\"id\":\"zbmed.ble\",\"type\":\"clients\"},{\"id\":\"zbmed.uhoh-agr\",\"type\":\"clients\"},{\"id\":\"zbmed.dsmz\",\"type\":\"clients\"},{\"id\":\"zbmed.biofresh\",\"type\":\"clients\"},{\"id\":\"zbmed.giqs\",\"type\":\"clients\"},{\"id\":\"zbmed.hortigat\",\"type\":\"clients\"},{\"id\":\"zbmed.ipb\",\"type\":\"clients\"},{\"id\":\"zbmed.florsoz\",\"type\":\"clients\"},{\"id\":\"zbmed.sfuwien\",\"type\":\"clients\"},{\"id\":\"zbmed.lernzdb\",\"type\":\"clients\"},{\"id\":\"zbmed.hits\",\"type\":\"clients\"},{\"id\":\"zbmed.ebookalt\",\"type\":\"clients\"},{\"id\":\"zbmed.livbooks\",\"type\":\"clients\"},{\"id\":\"zbmed.ktbl\",\"type\":\"clients\"},{\"id\":\"zbmed.ifado\",\"type\":\"clients\"},{\"id\":\"zbmed.vlsp\",\"type\":\"clients\"},{\"id\":\"zbmed.zfpg\",\"type\":\"clients\"},{\"id\":\"zbmed.bfr\",\"type\":\"clients\"},{\"id\":\"zbmed.diagnomx\",\"type\":\"clients\"},{\"id\":\"zbmed.ijsfd\",\"type\":\"clients\"},{\"id\":\"zbmed.forges\",\"type\":\"clients\"},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"},{\"id\":\"zbmed.publisso\",\"type\":\"clients\"},{\"id\":\"zbmed.anet\",\"type\":\"clients\"},{\"id\":\"zbmed.zfmk\",\"type\":\"clients\"},{\"id\":\"zbmed.zi\",\"type\":\"clients\"},{\"id\":\"zbmed.testbfs\",\"type\":\"clients\"},{\"id\":\"zbmed.bfs\",\"type\":\"clients\"},{\"id\":\"zbmed.smp\",\"type\":\"clients\"},{\"id\":\"zbmed.jmuw\",\"type\":\"clients\"},{\"id\":\"zbmed.ulbhalle\",\"type\":\"clients\"},{\"id\":\"zbmed.aps\",\"type\":\"clients\"},{\"id\":\"zbmed.test\",\"type\":\"clients\"},{\"id\":\"zbmed.orobtest\",\"type\":\"clients\"},{\"id\":\"zbmed.snsb-test\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.3207\",\"type\":\"prefixes\"},{\"id\":\"10.4126\",\"type\":\"prefixes\"},{\"id\":\"10.5163\",\"type\":\"prefixes\"},{\"id\":\"10.5283\",\"type\":\"prefixes\"},{\"id\":\"10.5289\",\"type\":\"prefixes\"},{\"id\":\"10.4117\",\"type\":\"prefixes\"},{\"id\":\"10.5677\",\"type\":\"prefixes\"},{\"id\":\"10.5680\",\"type\":\"prefixes\"},{\"id\":\"10.5681\",\"type\":\"prefixes\"},{\"id\":\"10.5882\",\"type\":\"prefixes\"},{\"id\":\"10.6091\",\"type\":\"prefixes\"},{\"id\":\"10.6097\",\"type\":\"prefixes\"},{\"id\":\"10.6099\",\"type\":\"prefixes\"},{\"id\":\"10.6101\",\"type\":\"prefixes\"},{\"id\":\"10.7479\",\"type\":\"prefixes\"},{\"id\":\"10.7482\",\"type\":\"prefixes\"},{\"id\":\"10.12767\",\"type\":\"prefixes\"},{\"id\":\"10.12768\",\"type\":\"prefixes\"},{\"id\":\"10.13145\",\"type\":\"prefixes\"},{\"id\":\"10.13148\",\"type\":\"prefixes\"},{\"id\":\"10.14290\",\"type\":\"prefixes\"},{\"id\":\"10.14471\",\"type\":\"prefixes\"},{\"id\":\"10.14767\",\"type\":\"prefixes\"},{\"id\":\"10.14757\",\"type\":\"prefixes\"},{\"id\":\"10.14761\",\"type\":\"prefixes\"},{\"id\":\"10.15150\",\"type\":\"prefixes\"},{\"id\":\"10.15136\",\"type\":\"prefixes\"},{\"id\":\"10.15135\",\"type\":\"prefixes\"},{\"id\":\"10.15137\",\"type\":\"prefixes\"},{\"id\":\"10.15490\",\"type\":\"prefixes\"},{\"id\":\"10.15491\",\"type\":\"prefixes\"},{\"id\":\"10.15466\",\"type\":\"prefixes\"},{\"id\":\"10.17179\",\"type\":\"prefixes\"},{\"id\":\"10.17193\",\"type\":\"prefixes\"},{\"id\":\"10.17194\",\"type\":\"prefixes\"},{\"id\":\"10.17629\",\"type\":\"prefixes\"},{\"id\":\"10.17590\",\"type\":\"prefixes\"},{\"id\":\"10.18461\",\"type\":\"prefixes\"},{\"id\":\"10.18455\",\"type\":\"prefixes\"},{\"id\":\"10.18716\",\"type\":\"prefixes\"},{\"id\":\"10.20349\",\"type\":\"prefixes\"},{\"id\":\"10.20348\",\"type\":\"prefixes\"},{\"id\":\"10.20364\",\"type\":\"prefixes\"},{\"id\":\"10.20362\",\"type\":\"prefixes\"},{\"id\":\"10.20363\",\"type\":\"prefixes\"},{\"id\":\"10.21959\",\"type\":\"prefixes\"},{\"id\":\"10.21958\",\"type\":\"prefixes\"},{\"id\":\"10.21961\",\"type\":\"prefixes\"},{\"id\":\"10.21962\",\"type\":\"prefixes\"},{\"id\":\"10.21960\",\"type\":\"prefixes\"},{\"id\":\"10.33551\",\"type\":\"prefixes\"}]}}},{\"id\":\"gesis\",\"type\":\"providers\",\"attributes\":{\"name\":\"GESIS - Leibniz Institute for the Social Sciences\",\"displayName\":\"GESIS - Leibniz Institute for the Social Sciences\",\"symbol\":\"GESIS\",\"website\":null,\"systemEmail\":\"Dimitar.Dimitrov@gesis.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"direct_member\",\"organizationType\":null,\"focusArea\":\"socialSciences\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":null,\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2010-01-01T00:00:00.000Z\",\"updated\":\"2018-11-24T16:27:44.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"gesis.test\",\"type\":\"clients\"},{\"id\":\"gesis.gesis\",\"type\":\"clients\"},{\"id\":\"gesis.zpid\",\"type\":\"clients\"},{\"id\":\"gesis.soep\",\"type\":\"clients\"},{\"id\":\"gesis.deas\",\"type\":\"clients\"},{\"id\":\"gesis.neps\",\"type\":\"clients\"},{\"id\":\"gesis.archiv\",\"type\":\"clients\"},{\"id\":\"gesis.avedas\",\"type\":\"clients\"},{\"id\":\"gesis.dsz-bo\",\"type\":\"clients\"},{\"id\":\"gesis.datalino\",\"type\":\"clients\"},{\"id\":\"gesis.indepth\",\"type\":\"clients\"},{\"id\":\"gesis.rki\",\"type\":\"clients\"},{\"id\":\"gesis.dipf\",\"type\":\"clients\"},{\"id\":\"gesis.ubma\",\"type\":\"clients\"},{\"id\":\"gesis.viadrina\",\"type\":\"clients\"},{\"id\":\"gesis.bibb-fdz\",\"type\":\"clients\"},{\"id\":\"gesis.ubhd\",\"type\":\"clients\"},{\"id\":\"gesis.db-bank\",\"type\":\"clients\"},{\"id\":\"gesis.mda\",\"type\":\"clients\"},{\"id\":\"gesis.bib\",\"type\":\"clients\"},{\"id\":\"gesis.jna\",\"type\":\"clients\"},{\"id\":\"gesis.die\",\"type\":\"clients\"},{\"id\":\"gesis.hsr\",\"type\":\"clients\"},{\"id\":\"gesis.cses\",\"type\":\"clients\"},{\"id\":\"gesis.datorium\",\"type\":\"clients\"},{\"id\":\"gesis.wzb\",\"type\":\"clients\"},{\"id\":\"gesis.share\",\"type\":\"clients\"},{\"id\":\"gesis.etum\",\"type\":\"clients\"},{\"id\":\"gesis.icpsr\",\"type\":\"clients\"},{\"id\":\"gesis.diametro\",\"type\":\"clients\"},{\"id\":\"gesis.hsrc\",\"type\":\"clients\"},{\"id\":\"gesis.wvsa\",\"type\":\"clients\"},{\"id\":\"gesis.ianus\",\"type\":\"clients\"},{\"id\":\"gesis.ubbi\",\"type\":\"clients\"},{\"id\":\"gesis.gcr21\",\"type\":\"clients\"},{\"id\":\"gesis.hiig\",\"type\":\"clients\"},{\"id\":\"gesis.zfl\",\"type\":\"clients\"},{\"id\":\"gesis.seas\",\"type\":\"clients\"},{\"id\":\"gesis.zis\",\"type\":\"clients\"},{\"id\":\"gesis.ijrvet\",\"type\":\"clients\"},{\"id\":\"gesis.mpib\",\"type\":\"clients\"},{\"id\":\"gesis.sdm\",\"type\":\"clients\"},{\"id\":\"gesis.test2\",\"type\":\"clients\"},{\"id\":\"gesis.qjb\",\"type\":\"clients\"},{\"id\":\"gesis.que-net\",\"type\":\"clients\"},{\"id\":\"gesis.bsb\",\"type\":\"clients\"},{\"id\":\"gesis.ijll\",\"type\":\"clients\"},{\"id\":\"gesis.mm\",\"type\":\"clients\"},{\"id\":\"gesis.akm\",\"type\":\"clients\"},{\"id\":\"gesis.zzf\",\"type\":\"clients\"},{\"id\":\"gesis.iqb\",\"type\":\"clients\"},{\"id\":\"gesis.mind\",\"type\":\"clients\"},{\"id\":\"gesis.ifpuk\",\"type\":\"clients\"},{\"id\":\"gesis.vz-nrw\",\"type\":\"clients\"},{\"id\":\"gesis.fid\",\"type\":\"clients\"},{\"id\":\"gesis.csda\",\"type\":\"clients\"},{\"id\":\"gesis.ude\",\"type\":\"clients\"},{\"id\":\"gesis.et-bbu\",\"type\":\"clients\"},{\"id\":\"gesis.crolar\",\"type\":\"clients\"},{\"id\":\"gesis.heiup\",\"type\":\"clients\"},{\"id\":\"gesis.hub\",\"type\":\"clients\"},{\"id\":\"gesis.hab\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib1\",\"type\":\"clients\"},{\"id\":\"gesis.rki-bib2\",\"type\":\"clients\"},{\"id\":\"gesis.fdp-uru\",\"type\":\"clients\"},{\"id\":\"gesis.ub-pad\",\"type\":\"clients\"},{\"id\":\"gesis.ihi\",\"type\":\"clients\"},{\"id\":\"gesis.iai\",\"type\":\"clients\"},{\"id\":\"gesis.histarch\",\"type\":\"clients\"},{\"id\":\"gesis.apparat\",\"type\":\"clients\"},{\"id\":\"gesis.up-hin\",\"type\":\"clients\"},{\"id\":\"gesis.bifie\",\"type\":\"clients\"},{\"id\":\"gesis.exttest\",\"type\":\"clients\"},{\"id\":\"gesis.zfkd\",\"type\":\"clients\"},{\"id\":\"gesis.pretest\",\"type\":\"clients\"},{\"id\":\"gesis.wdb\",\"type\":\"clients\"},{\"id\":\"gesis.caro\",\"type\":\"clients\"},{\"id\":\"gesis.propy\",\"type\":\"clients\"},{\"id\":\"gesis.zmt\",\"type\":\"clients\"},{\"id\":\"gesis.uvhi\",\"type\":\"clients\"},{\"id\":\"gesis.mi-bmb\",\"type\":\"clients\"},{\"id\":\"gesis.bstift\",\"type\":\"clients\"},{\"id\":\"gesis.ubjcs\",\"type\":\"clients\"},{\"id\":\"gesis.phzh\",\"type\":\"clients\"},{\"id\":\"gesis.jll\",\"type\":\"clients\"},{\"id\":\"gesis.ubhg\",\"type\":\"clients\"},{\"id\":\"gesis.ubve\",\"type\":\"clients\"},{\"id\":\"gesis.srda\",\"type\":\"clients\"},{\"id\":\"gesis.die-gdi\",\"type\":\"clients\"},{\"id\":\"gesis.evhn\",\"type\":\"clients\"},{\"id\":\"gesis.bh\",\"type\":\"clients\"},{\"id\":\"gesis.labs\",\"type\":\"clients\"},{\"id\":\"gesis.sodanet\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.4232\",\"type\":\"prefixes\"},{\"id\":\"10.5156\",\"type\":\"prefixes\"},{\"id\":\"10.5157\",\"type\":\"prefixes\"},{\"id\":\"10.5158\",\"type\":\"prefixes\"},{\"id\":\"10.5159\",\"type\":\"prefixes\"},{\"id\":\"10.5160\",\"type\":\"prefixes\"},{\"id\":\"10.5164\",\"type\":\"prefixes\"},{\"id\":\"10.5684\",\"type\":\"prefixes\"},{\"id\":\"10.6102\",\"type\":\"prefixes\"},{\"id\":\"10.6103\",\"type\":\"prefixes\"},{\"id\":\"10.6104\",\"type\":\"prefixes\"},{\"id\":\"10.6105\",\"type\":\"prefixes\"},{\"id\":\"10.0124\",\"type\":\"prefixes\"},{\"id\":\"10.7477\",\"type\":\"prefixes\"},{\"id\":\"10.7478\",\"type\":\"prefixes\"},{\"id\":\"10.7796\",\"type\":\"prefixes\"},{\"id\":\"10.7797\",\"type\":\"prefixes\"},{\"id\":\"10.7801\",\"type\":\"prefixes\"},{\"id\":\"10.7802\",\"type\":\"prefixes\"},{\"id\":\"10.7803\",\"type\":\"prefixes\"},{\"id\":\"10.7804\",\"type\":\"prefixes\"},{\"id\":\"10.11584\",\"type\":\"prefixes\"},{\"id\":\"10.11585\",\"type\":\"prefixes\"},{\"id\":\"10.11586\",\"type\":\"prefixes\"},{\"id\":\"10.11587\",\"type\":\"prefixes\"},{\"id\":\"10.11588\",\"type\":\"prefixes\"},{\"id\":\"10.12757\",\"type\":\"prefixes\"},{\"id\":\"10.12758\",\"type\":\"prefixes\"},{\"id\":\"10.12759\",\"type\":\"prefixes\"},{\"id\":\"10.12764\",\"type\":\"prefixes\"},{\"id\":\"10.12765\",\"type\":\"prefixes\"},{\"id\":\"10.12766\",\"type\":\"prefixes\"},{\"id\":\"10.13150\",\"type\":\"prefixes\"},{\"id\":\"10.13153\",\"type\":\"prefixes\"},{\"id\":\"10.13151\",\"type\":\"prefixes\"},{\"id\":\"10.13152\",\"type\":\"prefixes\"},{\"id\":\"10.13149\",\"type\":\"prefixes\"},{\"id\":\"10.14281\",\"type\":\"prefixes\"},{\"id\":\"10.14280\",\"type\":\"prefixes\"},{\"id\":\"10.14282\",\"type\":\"prefixes\"},{\"id\":\"10.14472\",\"type\":\"prefixes\"},{\"id\":\"10.14473\",\"type\":\"prefixes\"},{\"id\":\"10.3886\",\"type\":\"prefixes\"},{\"id\":\"10.14749\",\"type\":\"prefixes\"},{\"id\":\"10.14765\",\"type\":\"prefixes\"},{\"id\":\"10.14766\",\"type\":\"prefixes\"},{\"id\":\"10.14763\",\"type\":\"prefixes\"},{\"id\":\"10.14764\",\"type\":\"prefixes\"},{\"id\":\"10.14762\",\"type\":\"prefixes\"},{\"id\":\"10.15499\",\"type\":\"prefixes\"},{\"id\":\"10.15498\",\"type\":\"prefixes\"},{\"id\":\"10.15465\",\"type\":\"prefixes\"},{\"id\":\"10.15500\",\"type\":\"prefixes\"},{\"id\":\"10.15501\",\"type\":\"prefixes\"},{\"id\":\"10.15502\",\"type\":\"prefixes\"},{\"id\":\"10.15462\",\"type\":\"prefixes\"},{\"id\":\"10.15461\",\"type\":\"prefixes\"},{\"id\":\"10.15464\",\"type\":\"prefixes\"},{\"id\":\"10.15463\",\"type\":\"prefixes\"},{\"id\":\"10.17177\",\"type\":\"prefixes\"},{\"id\":\"10.17176\",\"type\":\"prefixes\"},{\"id\":\"10.17175\",\"type\":\"prefixes\"},{\"id\":\"10.17174\",\"type\":\"prefixes\"},{\"id\":\"10.17173\",\"type\":\"prefixes\"},{\"id\":\"10.17622\",\"type\":\"prefixes\"},{\"id\":\"10.17621\",\"type\":\"prefixes\"},{\"id\":\"10.17623\",\"type\":\"prefixes\"},{\"id\":\"10.17620\",\"type\":\"prefixes\"},{\"id\":\"10.17619\",\"type\":\"prefixes\"},{\"id\":\"10.17907\",\"type\":\"prefixes\"},{\"id\":\"10.17883\",\"type\":\"prefixes\"},{\"id\":\"10.17906\",\"type\":\"prefixes\"},{\"id\":\"10.17884\",\"type\":\"prefixes\"},{\"id\":\"10.17905\",\"type\":\"prefixes\"},{\"id\":\"10.17904\",\"type\":\"prefixes\"},{\"id\":\"10.17903\",\"type\":\"prefixes\"},{\"id\":\"10.17902\",\"type\":\"prefixes\"},{\"id\":\"10.17901\",\"type\":\"prefixes\"},{\"id\":\"10.17900\",\"type\":\"prefixes\"},{\"id\":\"10.17899\",\"type\":\"prefixes\"},{\"id\":\"10.17898\",\"type\":\"prefixes\"},{\"id\":\"10.17886\",\"type\":\"prefixes\"},{\"id\":\"10.17885\",\"type\":\"prefixes\"},{\"id\":\"10.17888\",\"type\":\"prefixes\"},{\"id\":\"10.17887\",\"type\":\"prefixes\"},{\"id\":\"10.17889\",\"type\":\"prefixes\"},{\"id\":\"10.17890\",\"type\":\"prefixes\"},{\"id\":\"10.17891\",\"type\":\"prefixes\"},{\"id\":\"10.17892\",\"type\":\"prefixes\"},{\"id\":\"10.18441\",\"type\":\"prefixes\"},{\"id\":\"10.18440\",\"type\":\"prefixes\"},{\"id\":\"10.18443\",\"type\":\"prefixes\"},{\"id\":\"10.18442\",\"type\":\"prefixes\"},{\"id\":\"10.18445\",\"type\":\"prefixes\"},{\"id\":\"10.18444\",\"type\":\"prefixes\"},{\"id\":\"10.18448\",\"type\":\"prefixes\"},{\"id\":\"10.18449\",\"type\":\"prefixes\"},{\"id\":\"10.18446\",\"type\":\"prefixes\"},{\"id\":\"10.18447\",\"type\":\"prefixes\"},{\"id\":\"10.21241\",\"type\":\"prefixes\"},{\"id\":\"10.21240\",\"type\":\"prefixes\"},{\"id\":\"10.21243\",\"type\":\"prefixes\"},{\"id\":\"10.21242\",\"type\":\"prefixes\"},{\"id\":\"10.21245\",\"type\":\"prefixes\"},{\"id\":\"10.21244\",\"type\":\"prefixes\"},{\"id\":\"10.21247\",\"type\":\"prefixes\"},{\"id\":\"10.21246\",\"type\":\"prefixes\"},{\"id\":\"10.21249\",\"type\":\"prefixes\"},{\"id\":\"10.21248\",\"type\":\"prefixes\"},{\"id\":\"10.23666\",\"type\":\"prefixes\"},{\"id\":\"10.23667\",\"type\":\"prefixes\"},{\"id\":\"10.23664\",\"type\":\"prefixes\"},{\"id\":\"10.23665\",\"type\":\"prefixes\"},{\"id\":\"10.23662\",\"type\":\"prefixes\"},{\"id\":\"10.23663\",\"type\":\"prefixes\"},{\"id\":\"10.23660\",\"type\":\"prefixes\"},{\"id\":\"10.23661\",\"type\":\"prefixes\"},{\"id\":\"10.23668\",\"type\":\"prefixes\"},{\"id\":\"10.23669\",\"type\":\"prefixes\"},{\"id\":\"10.6141\",\"type\":\"prefixes\"}]}}}],\"meta\":{\"total\":2120,\"totalPages\":85,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":205},{\"id\":\"2019\",\"title\":\"2019\",\"count\":369},{\"id\":\"2018\",\"title\":\"2018\",\"count\":225},{\"id\":\"2017\",\"title\":\"2017\",\"count\":132},{\"id\":\"2016\",\"title\":\"2016\",\"count\":285},{\"id\":\"2015\",\"title\":\"2015\",\"count\":275},{\"id\":\"2014\",\"title\":\"2014\",\"count\":205},{\"id\":\"2013\",\"title\":\"2013\",\"count\":176},{\"id\":\"2012\",\"title\":\"2012\",\"count\":138},{\"id\":\"2011\",\"title\":\"2011\",\"count\":106}],\"providers\":[{\"id\":\"tib\",\"title\":null,\"count\":252},{\"id\":\"cdl\",\"title\":null,\"count\":232},{\"id\":\"bl\",\"title\":null,\"count\":147},{\"id\":\"inist\",\"title\":null,\"count\":120},{\"id\":\"ands\",\"title\":null,\"count\":115},{\"id\":\"gesis\",\"title\":null,\"count\":93},{\"id\":\"datacite\",\"title\":null,\"count\":62},{\"id\":\"ethz\",\"title\":null,\"count\":59},{\"id\":\"mtakik\",\"title\":null,\"count\":59},{\"id\":\"osti\",\"title\":null,\"count\":55}],\"clientTypes\":[{\"id\":\"repository\",\"title\":\"Repository\",\"count\":2062},{\"id\":\"periodical\",\"title\":\"Periodical\",\"count\":58}],\"repositoryTypes\":[{\"id\":\"institutional\",\"title\":\"Institutional\",\"count\":71},{\"id\":\"disciplinary\",\"title\":\"Disciplinary\",\"count\":24},{\"id\":\"multidisciplinary\",\"title\":\"Multidisciplinary\",\"count\":18},{\"id\":\"other\",\"title\":\"Other\",\"count\":14},{\"id\":\"governmental\",\"title\":\"Governmental\",\"count\":10},{\"id\":\"project-related\",\"title\":\"Project Related\",\"count\":8}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":17},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":2},{\"id\":\"DINI\",\"title\":\"Dini\",\"count\":1},{\"id\":\"DSA\",\"title\":\"Dsa\",\"count\":1},{\"id\":\"WDS\",\"title\":\"Wds\",\"count\":1}],\"software\":[{\"id\":\"other\",\"title\":\"Other\",\"count\":22},{\"id\":\"dataverse\",\"title\":\"Dataverse\",\"count\":17},{\"id\":\"dspace\",\"title\":\"DSpace\",\"count\":12},{\"id\":\"ckan\",\"title\":\"CKAN\",\"count\":5},{\"id\":\"eprints\",\"title\":\"EPrints\",\"count\":5},{\"id\":\"invenio\",\"title\":\"Invenio\",\"count\":4},{\"id\":\"open journal systems (ojs)\",\"title\":\"Open Journal Systems (OJS)\",\"count\":3},{\"id\":\"opus\",\"title\":\"Opus\",\"count\":3},{\"id\":\"nesstar\",\"title\":\"Nesstar\",\"count\":2},{\"id\":\"fedora\",\"title\":\"Fedora\",\"count\":1}]},\"links\":{\"self\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&include=provider&include-deleted=&page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-type=&size=25&software=&sort=&year=\",\"next\":\"https://api.test.datacite.org/repositories?certificate=&client-type=&page%5Bnumber%5D=2&page%5Bsize%5D=25&provider-id=&query=&repository-type=&software=&sort=&year=\"}}" }, "cookies": [], "headers": [ @@ -110,8 +110,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:28.729Z", - "time": 452, + "startedDateTime": "2020-05-04T16:42:15.680Z", + "time": 161, "timings": { "blocked": -1, "connect": -1, @@ -119,7 +119,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 452 + "wait": 161 } }, { @@ -178,8 +178,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:29.199Z", - "time": 98, + "startedDateTime": "2020-05-04T16:42:15.931Z", + "time": 97, "timings": { "blocked": -1, "connect": -1, @@ -187,7 +187,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 97 } }, { @@ -237,8 +237,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:29.199Z", - "time": 101, + "startedDateTime": "2020-05-04T16:42:15.931Z", + "time": 99, "timings": { "blocked": -1, "connect": -1, @@ -246,7 +246,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 101 + "wait": 99 } } ], diff --git a/recordings/Acceptance-user-doi_1070164149/visiting-dois_3774702605/recording.har b/recordings/Acceptance-user-doi_1070164149/visiting-dois_3774702605/recording.har index d99f73d60..318f332ba 100644 --- a/recordings/Acceptance-user-doi_1070164149/visiting-dois_3774702605/recording.har +++ b/recordings/Acceptance-user-doi_1070164149/visiting-dois_3774702605/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | doi/visiting dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -119,11 +119,11 @@ "url": "https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=" }, "response": { - "bodySize": 93108, + "bodySize": 109001, "content": { "mimeType": "application/json; charset=utf-8", - "size": 93108, - "text": "{\"data\":[{\"id\":\"10.15125/test-00001\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.15125/test-00001\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.15125/test-00001\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://researchdata-test.bath.ac.uk/708/\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Ball, Alex\",\"nameType\":\"Personal\",\"givenName\":\"Alex\",\"familyName\":\"Ball\",\"affiliation\":[{\"name\":\"University of Bath\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3148-9107\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Yet another test deposit\",\"titleType\":null},{\"lang\":null,\"title\":\"Alternative title\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"University of Bath\",\"container\":{},\"publicationYear\":2017,\"subjects\":[{\"subject\":\"Information Science & Retrieval\",\"schemeUri\":\"http://www.rcuk.ac.uk/research/efficiency/researchadmin/harmonisation/\",\"subjectScheme\":\"RCUK Research Classifications\"}],\"contributors\":[{\"name\":\"Pink, Catherine\",\"nameType\":\"Personal\",\"givenName\":\"Catherine\",\"familyName\":\"Pink\",\"affiliation\":[{\"name\":\"University of Bath\"}],\"contributorType\":\"Supervisor\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-9752-6388\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Ball, Alex\",\"nameType\":\"Personal\",\"givenName\":\"Alex\",\"familyName\":\"Ball\",\"affiliation\":[{\"name\":\"University of Bath\"}],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3148-9107\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"University Of Bath\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2018-02-01/2018-02-08\",\"dateType\":\"Collected\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"https://researchdata-test.bath.ac.uk/708/3/2017-05_Metadata_Map.xlsx\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"https://researchdata-test.bath.ac.uk/708/4/Edward%20Fraenkel%20in%20conversation%20with%20John%20Ball_%20Part%201%20Early%20years%20at%20school%20and%20in%20aeronautics.mp4\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.2218/ijdc.v12i1.494\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.4337/9781788111010\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"2017-05_Metadata_Map.xlsx - 15kB\",\"Edward Fraenkel in conversation with John Ball_ Part 1 Early years at school and in aeronautics.mp4 - 2B\"],\"formats\":[\"2017-05_Metadata_Map.xlsx - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\",\"Edward Fraenkel in conversation with John Ball_ Part 1 Early years at school and in aeronautics.mp4 - video/mp4\"],\"version\":\"1\",\"rightsList\":[{\"rights\":\"2017-05_Metadata_Map.xlsx is licensed under the Creative Commons Attribution 4.0 License\",\"rightsUri\":\"http://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Edward Fraenkel in conversation with John Ball_ Part 1 Early years at school and in aeronautics.mp4 has no associated licence. Please contact the archive for advice.\"}],\"descriptions\":[{\"lang\":null,\"description\":\"This test looks at whether deposited files are copied to the Arkivum appliance & whether ampersands cause errors when sending metadata to DataCite. It also ensures the log files gives sensible messages.\",\"descriptionType\":\"Abstract\"},{\"lang\":null,\"description\":\"My method.\",\"descriptionType\":\"Methods\"},{\"lang\":null,\"description\":\"How I prepared and processed my data.\",\"descriptionType\":\"Methods\"},{\"lang\":null,\"description\":\"What you need in order to read them.\",\"descriptionType\":\"TechnicalInfo\"},{\"lang\":null,\"description\":\"How I organised my data into files.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPoint\":{\"pointLatitude\":\"57.0135\",\"pointLongitude\":\"9.98934\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"-71.032\",\"northBoundLatitude\":\"41.09\",\"southBoundLatitude\":\"42.893\",\"westBoundLongitude\":\"-68.211\"}},{\"geoLocationPlace\":\"Neverland\"}],\"fundingReferences\":[{\"awardTitle\":\"Research Data Service\",\"funderName\":\"University of Bath\",\"funderIdentifier\":\"https://doi.org/10.13039/501100000835\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://datacite.org/invalid.html\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":1,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-10T15:59:03.000Z\",\"registered\":\"2019-05-10T22:06:18.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:33:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.bath\",\"type\":\"clients\"}}}},{\"id\":\"10.11588/52415\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.11588/52415\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.11588/52415\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"NN\",\"nameType\":\"Personal\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"de-DE\",\"title\":\"Testbilder\"}],\"publisher\":\"heidICON, Heidelberg University Library\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"FIGURE\",\"bibtex\":\"misc\",\"citeproc\":\"graphic\",\"schemaOrg\":\"ImageObject\",\"resourceType\":\"Image\",\"resourceTypeGeneral\":\"Image\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://serv38.ub.uni-heidelberg.de:8443/detail/52415\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-04T09:43:59.000Z\",\"registered\":\"2019-10-04T09:44:00.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gesis.ubhd\",\"type\":\"clients\"}}}},{\"id\":\"10.24339/test_doi_5def7ecb26519\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.24339/test_doi_5def7ecb26519\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.24339/test_doi_5def7ecb26519\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"C. Laurence\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"A. Gialamas\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"T. Bubner\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"L. Yelland\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"K. Willson\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"P. Ryan\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Beilby, Justin\",\"nameType\":\"Personal\",\"givenName\":\"Justin\",\"familyName\":\"Beilby\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Patient satisfaction with point-of-care testing in general practice\"}],\"publisher\":\"Torrens University Australia\",\"container\":{},\"publicationYear\":2018,\"subjects\":[{\"subject\":\"111717 Primary Health Care\",\"schemeUri\":\"http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E\",\"subjectScheme\":\"FOR\"}],\"contributors\":[],\"dates\":[{\"date\":\"2018-09-04\",\"dateType\":\"Created\"},{\"date\":\"2019-12-10\",\"dateType\":\"Updated\"},{\"date\":\"2018\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal contribution\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[{\"description\":\"Point-of-care testing is increasingly being used in general practice to assist GPs in their management of patients with chronic disease. However, patient satisfaction and acceptability of point-of-care testing in general practice has not been widely studied.AimTo determine if patients are more satisfied with point-of-care testing than with pathology laboratory testing for three chronic conditions.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://torrens.figsh.com/articles/Patient_satisfaction_with_point-of-care_testing_in_general_practice/5958808\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-10T11:17:33.000Z\",\"registered\":\"2019-12-10T11:17:34.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:33:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"ands.c171\",\"type\":\"clients\"}}}},{\"id\":\"10.33634/14\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33634/14\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.33634/14\",\"identifierType\":\"URL\"},{\"identifier\":\"https://doi.org/14\",\"identifierType\":\"DOI\"}],\"creators\":[{\"nameType\":\"Personal\",\"givenName\":\"Jenny\",\"familyName\":\"Basford\",\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[{\"title\":\"No tabs or spaces DataCite test\"}],\"publisher\":\"MOLA DEMO Research Repository\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"resourceType\":\"\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://mola-demo.oar.bl.uk/concern/exhibition_items/6d13d135-9f99-4357-aea4-1bfc5c3407b6\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-16T15:27:21.000Z\",\"registered\":\"2019-07-16T15:27:22.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.rep-mola\",\"type\":\"clients\"}}}},{\"id\":\"10.7958/dryad.t76hdrd0\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7958/dryad.t76hdrd0\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7958/dryad.t76hdrd0\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Scherle, Ryan\",\"nameType\":\"Personal\",\"givenName\":\"Ryan\",\"familyName\":\"Scherle\",\"affiliation\":[{\"name\":\"Discovery Air (Canada)\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-4071-4510\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"medical fri\"}],\"publisher\":\"Dryad\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[\"52 bytes\"],\"formats\":[],\"version\":\"1\",\"rightsList\":[{\"rights\":\"CC0 1.0 Universal (CC0 1.0) Public Domain Dedication\",\"rightsUri\":\"https://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"dfsf\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:3000/stash/dataset/doi:10.7958/dryad.t76hdrd0\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-02T18:08:57.000Z\",\"registered\":\"2019-08-02T18:08:58.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"dryad.cdl\",\"type\":\"clients\"}}}},{\"id\":\"10.80096/10py-qc08\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80096/10py-qc08\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80096/10py-qc08\",\"identifierType\":\"DOI\"},{\"identifier\":\"1-4-109\",\"identifierType\":\"publisherId\"}],\"creators\":[{\"name\":\"GETACHEW, TESEMA\",\"nameType\":\"Personal\",\"givenName\":\"TESEMA\",\"familyName\":\"GETACHEW\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-3678-1983\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"ICT Expert and Researcher \",\"titleType\":null}],\"publisher\":\"Ethiopian Journal of Sciences and Sustainable Development\",\"container\":{\"type\":\"Series\",\"title\":\"Ethiopian Journal of Sciences and Sustainable Development\",\"firstPage\":\"Vol 6 No 2 (2019): EJSSD\"},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08-02\",\"dateType\":\"Submitted\"},{\"date\":\"2019-10-19\",\"dateType\":\"Accepted\"},{\"date\":\"2019-12-03\",\"dateType\":\"Updated\"},{\"date\":\"2019-10-19\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[\"81 - 93 Pages\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"##submission.license.cc.by4.footer##\",\"rightsUri\":\"http://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://ejssd.astu.edu.et\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-12-04T13:35:46.000Z\",\"registered\":\"2019-12-04T13:39:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"dev.adama\",\"type\":\"clients\"}}}},{\"id\":\"10.15154/19731\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.15154/19731\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.15154/19731\",\"identifierType\":\"DOI\"},{\"identifier\":\"19731\",\"identifierType\":\"IAD ID\"},{\"identifier\":\"PMID=12345678; Grant Numbers=P01HD01234; \",\"identifierType\":\"Other Numbers\"}],\"creators\":[{\"name\":\"Smith John\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Gaidamakov, Viatcheslav\",\"nameType\":\"Personal\",\"givenName\":\"Viatcheslav\",\"familyName\":\"Gaidamakov\",\"affiliation\":[]}],\"titles\":[{\"title\":\"20200108 Test Study\"}],\"publisher\":\"NIMH Data Repositories\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"Keyword\"},{\"subject\":\"Test_01\"}],\"contributors\":[{\"name\":\"Last02 First02\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]},{\"name\":\"Last01 First01\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"NDAR Study\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"For Testing practice\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://stage.nimhda.org/study.html?id=818\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-27T15:02:16.000Z\",\"registered\":\"2020-02-12T15:32:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:33:17.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"osti.nimh\",\"type\":\"clients\"}}}},{\"id\":\"10.80081/bbz5-pa46\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80081/bbz5-pa46\",\"identifiers\":[],\"creators\":[{\"name\":\"Bruno Morandiere\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Premier test de création d'un DOI via les API\"}],\"publisher\":\"Réseau des Écoles françaises à l'étranger\",\"container\":{},\"publicationYear\":2016,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.resefe.fr/\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-19T09:24:24.000Z\",\"registered\":\"2020-02-19T09:24:24.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:33:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.efe\",\"type\":\"clients\"}}}},{\"id\":\"10.23638/jips-1-2\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.23638/jips-1-2\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.23638/jips-1-2\",\"identifierType\":\"DOI\"},{\"identifier\":\"https://jips.episciences.org/58\",\"identifierType\":\"URL\"}],\"creators\":[{\"name\":\"Camara, Fatoumata\",\"nameType\":\"Personal\",\"givenName\":\"Fatoumata\",\"familyName\":\"Camara\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Calvary, Gaëlle\",\"nameType\":\"Personal\",\"givenName\":\"Gaëlle\",\"familyName\":\"Calvary\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Demumieux, Rachel\",\"nameType\":\"Personal\",\"givenName\":\"Rachel\",\"familyName\":\"Demumieux\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Ganneau, Vincent\",\"nameType\":\"Personal\",\"givenName\":\"Vincent\",\"familyName\":\"Ganneau\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":null,\"title\":\"Premiers retours d'expérience sur l'utilisabilité et les usages de systèmes interactifs plastiques\",\"titleType\":null}],\"publisher\":\"episciences.org\",\"container\":{\"type\":\"Series\",\"title\":\"Journal d'Interaction Personne-Système ; Volume 1 ; 2418-1838\",\"identifier\":\"2418-1838\",\"identifierType\":\"ISSN\"},\"publicationYear\":2014,\"subjects\":[{\"lang\":\"en\",\"subject\":\"[INFO:INFO_HC] Computer Science/Human-Computer Interaction\",\"subjectScheme\":\"author\"},{\"lang\":\"fr\",\"subject\":\"[INFO:INFO_HC] Informatique/Interface homme-machine\",\"subjectScheme\":\"author\"},{\"subject\":\"Plasticity\",\"subjectScheme\":\"author\"},{\"subject\":\"Adaptation\",\"subjectScheme\":\"author\"},{\"subject\":\"Context of use\",\"subjectScheme\":\"author\"},{\"subject\":\"Assessment\",\"subjectScheme\":\"author\"},{\"subject\":\"Field test\",\"subjectScheme\":\"author\"}],\"contributors\":[{\"name\":\"Contact@Episciences.Org\",\"nameType\":\"Organizational\",\"affiliation\":[{\"name\":\"episciences.org\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2014-10-06T15:05:52+02:00\",\"dateType\":\"Submitted\"},{\"date\":\"2020-02-26T10:50:19+01:00\",\"dateType\":\"Updated\"},{\"date\":\"2014-10-06T15:05:52+02:00\",\"dateType\":\"Issued\"}],\"language\":\"fra\",\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"https://hal.archives-ouvertes.fr/hal-01058922v1\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"2418-1838\",\"relatedIdentifierType\":\"ISSN\"}],\"sizes\":[],\"formats\":[\"PDF\"],\"version\":\"1\",\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":\"Journal d'Interaction Personne-Système ; Volume 1 ; 2418-1838\",\"descriptionType\":\"SeriesInformation\"},{\"lang\":null,\"description\":\"The Plasticity property has been introduced in 1999 in France to cope with the new variability of the context of use in ambient intelligence. A User Interface (UI) is said to be plastic if it is able to adapt to its context of use while preserving human-centered properties. Ten years later, theoretical as well as practical advances have been made. However, several questions related to usability and acceptability of plastic UIs need to be answered through evaluation with users. This paper presents a state of the art in plasticity and evaluation (methods and concerns). It describes three demonstrators and presents first results from evaluations led in laboratory and in the wild.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://jips.episciences.org/58\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-26T09:59:13.000Z\",\"registered\":\"2020-02-26T10:04:25.000Z\",\"published\":\"2014\",\"updated\":\"2020-04-23T07:33:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.inria\",\"type\":\"clients\"}}}},{\"id\":\"10.13144/lineas1000\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.13144/lineas1000\",\"identifiers\":[],\"creators\":[{\"name\":\"Fernández García, Alicia\",\"nameType\":\"Personal\",\"givenName\":\"Alicia\",\"familyName\":\"Fernández García\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"https://www.idref.fr/165664169\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":\"fr\",\"title\":\"La population musulmane de l’enclave de Ceuta : le cas d’une majorité devenue minoritaire (1415-1580)\",\"titleType\":null}],\"publisher\":\"Lineas, revue interdisciplinaire d’études hispaniques\",\"container\":{},\"publicationYear\":2018,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{\"resourceType\":\"Journal Article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://revues.univ-pau.fr/lineas/3260\",\"contentUrl\":null,\"metadataVersion\":6,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-14T13:32:16.000Z\",\"registered\":\"2019-10-14T13:45:29.000Z\",\"published\":\"2018\",\"updated\":\"2020-04-23T07:33:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.uppa\",\"type\":\"clients\"}}}},{\"id\":\"10.17176/20190605-134738-2\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.17176/20190605-134738-2\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.17176/20190605-134738-2\",\"identifierType\":\"DOI\"},{\"identifier\":\"openagrar_mods_00049090\",\"identifierType\":\"MyCoRe\"}],\"creators\":[{\"name\":\"Borchert, Paul\",\"nameType\":\"Personal\",\"givenName\":\"Paul\",\"familyName\":\"Borchert\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"de\",\"title\":\"New Test\"}],\"publisher\":\"Verlag\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Bundesinstitut Für Risikobewertung\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019-07-11\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.openagrar.de/receive/openagrar_mods_00049090\",\"contentUrl\":null,\"metadataVersion\":149,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-05T12:17:46.000Z\",\"registered\":\"2019-08-21T10:06:29.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gesis.fid\",\"type\":\"clients\"}}}},{\"id\":\"10.7947/m30x-pa17\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.7947/m30x-pa17\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.7947/m30x-pa17\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Microsoft AI For Earth\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Microsoft AI for Earth Camera Trap MegaDetector Model V3\"}],\"publisher\":\"Tensorflow Hub\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"en\",\"subject\":\"natural world\"},{\"lang\":\"en\",\"subject\":\"camera traps\"},{\"lang\":\"en\",\"subject\":\"animal detection\"},{\"lang\":\"en\",\"subject\":\"biodiversity monitoring\"},{\"lang\":\"en\",\"subject\":\"object recognition\"},{\"lang\":\"en\",\"subject\":\"detector\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"tensorflow savedmodel\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[{\"relationType\":\"IsDerivedFrom\",\"relatedIdentifier\":\"http://lila.science/datasets/caltech-camera-traps\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"IsDerivedFrom\",\"relatedIdentifier\":\"http://lila.science/datasets/snapshot-serenget\",\"relatedIdentifierType\":\"URL\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"lang\":\"en-us\",\"rightsUri\":\"https://github.com/Microsoft/dotnet/blob/master/LICENSE\"}],\"descriptions\":[{\"lang\":\"en\",\"description\":\"This is an animal detection model for camera trap images, trained primarily on data from LILA.science.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://tfhub.dev/microsoft-ai-for-earth/vision/detector/megadetector_V3/1\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-23T12:10:22.000Z\",\"registered\":\"2019-10-23T12:10:22.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"google.test\",\"type\":\"clients\"}}}},{\"id\":\"10.22001/ag.econ.45747\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.22001/ag.econ.45747\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.22001/ag.econ.45747\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Sompolska-Rzechuła, Agnieszka\",\"nameType\":\"Personal\",\"givenName\":\"Agnieszka\",\"familyName\":\"Sompolska-Rzechuła\",\"affiliation\":[]},{\"name\":\"Świtłyk, Michał\",\"nameType\":\"Personal\",\"givenName\":\"Michał\",\"familyName\":\"Świtłyk\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Factors affecting probablility of income increase in agricultural holdings specialised in milk production\"}],\"publisher\":\"Unknown\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"Agribusiness\"},{\"subject\":\"Agricultural and Food Policy\"},{\"subject\":\"Livestock Production/Industries\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-07-11T13:46:32.0+02:00\",\"dateType\":\"Updated\"},{\"date\":\"2016\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal Article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"The paper uses logistic regression model to determine factors affecting probability of income increase in agricultural holdings specialised in milk production. Analysis had a dynamic character and covered the period between 2009 and 2011. Independent variables included both quality and quantity features associated with farm activities. The analysis showed that,in each year, the most important variables in the logit model concerned the utilised agricultural area and the number of dairy cows, which had a positive impact on probability of income increase. All estimated models are characterised by high quality and thus can be used to correctly classify agricultural holdings.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://audun.tind.io/record/45747\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-07-11T11:46:32.000Z\",\"registered\":\"2019-07-11T11:46:33.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:33:14.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tind.umn\",\"type\":\"clients\"}}}},{\"id\":\"10.70027/0012\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70027/0012\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70027/0012\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Foo, John\",\"nameType\":\"Personal\",\"givenName\":\"John\",\"familyName\":\"Foo\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":null,\"nameIdentifier\":\"Foo, John M\",\"nameIdentifierScheme\":\"Other\"}]}],\"titles\":[{\"lang\":null,\"title\":\"This is a test titlex\",\"titleType\":null}],\"publisher\":\"Foo U\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://schema.datacite.org/meta/kernel-4.0/index.html\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-15T18:50:19.000Z\",\"registered\":\"2019-03-15T18:50:19.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:14.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"orbis.uwl\",\"type\":\"clients\"}}}},{\"id\":\"10.80159/janp-t726\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80159/janp-t726\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80159/janp-t726\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Evaplan At University Hospital Heidelberg\",\"nameType\":\"Organizational\",\"givenName\":null,\"familyName\":null,\"affiliation\":[{\"name\":\"University Hospital Heidelberg\",\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"nameIdentifiers\":[{\"schemeUri\":\"https://ror.org/\",\"nameIdentifier\":\"https://ror.org/https://ror.org/013czdx64\",\"nameIdentifierScheme\":\"ROR\"}]}],\"titles\":[{\"lang\":null,\"title\":\"4th International Quality Improvement Forum\",\"titleType\":null}],\"publisher\":\"University Hospital Heidelberg\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"medicine\",\"valueUri\":\"https://www.dfg.de/en/dfg_profile/statutory_bodies/review_boards/subject_areas/index.jsp\",\"schemeUri\":\"https://www.dfg.de/en/dfg_profile/statutory_bodies/review_boards/subject_areas/index.jsp\",\"subjectScheme\":\"DFG\"}],\"contributors\":[{\"name\":\"Marx, Michael\",\"nameType\":\"Personal\",\"givenName\":\"Michael\",\"familyName\":\"Marx\",\"affiliation\":[{\"name\":\"University Hospital Heidelberg\",\"schemeUri\":null,\"affiliationIdentifier\":null,\"affiliationIdentifierScheme\":null}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[{\"schemeUri\":\"https://www.scopus.com\",\"nameIdentifier\":\"https://www.scopus.comhttps://www.scopus.com/authid/detail.uri?authorId=55539835000\",\"nameIdentifierScheme\":\"Scopus ID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"English\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"Conference\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"virtual\"}],\"fundingReferences\":[],\"url\":\"https://www.evaplan.org/quality-improvement-forum-2020/\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-26T19:14:48.000Z\",\"registered\":\"2020-03-26T19:29:22.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:33:14.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.confident-test\",\"type\":\"clients\"}}}},{\"id\":\"10.80209/test_doi_5e7ae38d5e11c\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80209/test_doi_5e7ae38d5e11c\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80209/test_doi_5e7ae38d5e11c\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"ARDC\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Testing\"}],\"publisher\":\"ARDC\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"MPCT\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"MediaObject\",\"resourceTypeGeneral\":\"Audiovisual\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://researchdata.ands.org.au/test\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-25T04:53:39.000Z\",\"registered\":\"2020-03-25T04:53:41.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:33:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"ardcanu.dc\",\"type\":\"clients\"}}}},{\"id\":\"10.80420/islandora:6\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80420/islandora:6\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80420/islandora:6\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Singh, Victoria\",\"nameType\":\"Personal\",\"givenName\":\"Victoria\",\"familyName\":\"Singh\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Champion, Derek\",\"nameType\":\"Personal\",\"givenName\":\"Derek\",\"familyName\":\"Champion\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Swain, Chris\",\"nameType\":\"Personal\",\"givenName\":\"Chris\",\"familyName\":\"Swain\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Addison, Merle\",\"nameType\":\"Personal\",\"givenName\":\"Merle\",\"familyName\":\"Addison\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Sector X Negative 04\"}],\"publisher\":\"grunt gallery\",\"container\":{},\"publicationYear\":1999,\"subjects\":[{\"subject\":\"Eroticism\"},{\"subject\":\"Inner Child\"},{\"subject\":\"Surrealism\"},{\"subject\":\"Multimedia Works\"},{\"subject\":\"Performance Art\"}],\"contributors\":[],\"dates\":[{\"date\":\"1999\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"MPCT\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"MediaObject\",\"resourceType\":\"Audiovisual\",\"resourceTypeGeneral\":\"Audiovisual\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Victoria Singh lies in a small pool and sprinkles powder on a baby doll. Still from Sector X: the hot new work by New Zealand fetish/punk artist Satina Saturnina.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:8000/islandora/object/islandora:6\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-13T19:52:16.000Z\",\"registered\":\"2020-03-13T19:52:17.000Z\",\"published\":\"1999\",\"updated\":\"2020-04-23T07:33:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\"}}}},{\"id\":\"10.80223/test_doi_5e813af66fe20\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80223/test_doi_5e813af66fe20\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80223/test_doi_5e813af66fe20\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"ARDC\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Testing Consortium\"}],\"publisher\":\"ARDC\",\"container\":{},\"publicationYear\":2012,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2012\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"MPCT\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"MediaObject\",\"resourceTypeGeneral\":\"Audiovisual\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://researchdata.ands.org.au/testingCon\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-30T00:19:35.000Z\",\"registered\":\"2020-03-30T00:19:36.000Z\",\"published\":\"2012\",\"updated\":\"2020-04-23T07:33:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"ardcanu.dc2\",\"type\":\"clients\"}}}},{\"id\":\"10.17185/duepublico/48536\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.17185/duepublico/48536\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.17185/duepublico/48536\",\"identifierType\":\"DOI\"},{\"identifier\":\"urn:nbn:de:hbz:464-20200114-174026-4\",\"identifierType\":\"URN\"},{\"identifier\":\"duepublico_mods_00048536\",\"identifierType\":\"MyCoRe\"}],\"creators\":[{\"name\":\"Graf, Dorothee\",\"nameType\":\"Personal\",\"givenName\":\"Dorothee\",\"familyName\":\"Graf\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Leinweber, Natalie\",\"nameType\":\"Personal\",\"givenName\":\"Natalie\",\"familyName\":\"Leinweber\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"lang\":\"de\",\"title\":\"Projektvorstellung OGeSoMo: Video-Mitschnitt\"}],\"publisher\":\"DuEPublico: Duisburg-Essen Publications online, University of Duisburg-Essen, Germany\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"DuEPublico: Duisburg-Essen Publications Online, University Of Duisburg-Essen\",\"nameType\":\"Personal\",\"givenName\":\"University Of Duisburg-Essen\",\"familyName\":\"DuEPublico: Duisburg-Essen Publications Online\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"inproceedings\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"lang\":\"de\",\"description\":\"Video-Mitschnitt der Präsentation.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://duepublico2.uni-due.de/receive/duepublico_mods_00048536\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-14T16:41:18.000Z\",\"registered\":\"2020-01-14T16:41:18.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.ubde\",\"type\":\"clients\"}}}},{\"id\":\"10.0151/0068969\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0151/0068969\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.0151/0068969\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Kaps, Reiko\",\"nameType\":\"Personal\",\"givenName\":\"Reiko\",\"familyName\":\"Kaps\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Testneu001\"}],\"publisher\":\"LUIS\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"eng\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution 3.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://localhost:5000/dataset/58799113-717c-46be-b507-12b40340a86d\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-01-17T12:54:42.000Z\",\"registered\":\"2020-01-17T12:54:44.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T07:33:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.reikkaps\",\"type\":\"clients\"}}}},{\"id\":\"10.33679/test_doi_5c92d321c8822\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.33679/test_doi_5c92d321c8822\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.33679/test_doi_5c92d321c8822\",\"identifierType\":\"DOI\"},{\"identifier\":\"b2104771\",\"identifierType\":\"other\"},{\"identifier\":\"http://hdl.handle.net/1885/155548\",\"identifierType\":\"uri\"}],\"creators\":[{\"name\":\"Murphy, Kate M.\",\"nameType\":\"Personal\",\"givenName\":\"Kate M.\",\"familyName\":\"Murphy\",\"affiliation\":[]}],\"titles\":[{\"title\":\"10.5072/R31TestNormal\"},{\"title\":\"Serious fictions : telling and remembering stories about the Tocumwal houses\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"ARDC\",\"container\":{},\"publicationYear\":2000,\"subjects\":[],\"contributors\":[{\"name\":\"University, The Australian National\",\"nameType\":\"Personal\",\"givenName\":\"The Australian National\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"DataManager\"},{\"name\":\"University, The Australian National\",\"nameType\":\"Personal\",\"givenName\":\"The Australian National\",\"familyName\":\"University\",\"affiliation\":[],\"contributorType\":\"HostingInstitution\"}],\"dates\":[{\"date\":\"2019-02-04\",\"dateType\":\"Issued\"},{\"date\":\"2019-02-04\",\"dateType\":\"Available\"},{\"date\":\"2000\",\"dateType\":\"Copyrighted\"},{\"date\":\"2000\",\"dateType\":\"Created\"},{\"date\":\"2000\",\"dateType\":\"Issued\"},{\"date\":\"2019-01-10\",\"dateType\":\"Updated\"}],\"language\":\"en-AU\",\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Collection\",\"resourceType\":\"Thesis (Masters)\",\"resourceTypeGeneral\":\"Collection\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://devl.ands.org.au/r31\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-03-20T23:56:19.000Z\",\"registered\":\"2019-03-20T23:56:22.000Z\",\"published\":\"2000\",\"updated\":\"2020-04-23T07:33:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"ands.c202\",\"type\":\"clients\"}}}},{\"id\":\"10.70008/test_doi_5dc1e8d344c34\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70008/test_doi_5dc1e8d344c34\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70008/test_doi_5dc1e8d344c34\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Steinbeck, Katharine\",\"nameType\":\"Personal\",\"givenName\":\"Katharine\",\"familyName\":\"Steinbeck\",\"affiliation\":[{\"name\":\"The University of Sydney\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1099-0522\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Garden, Frances\",\"nameType\":\"Personal\",\"givenName\":\"Frances\",\"familyName\":\"Garden\",\"affiliation\":[{\"name\":\"University of New South Wales\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1653-3031\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Cheng, Hoi Lun\",\"nameType\":\"Personal\",\"givenName\":\"Hoi Lun\",\"familyName\":\"Cheng\",\"affiliation\":[{\"name\":\"The University of Sydney\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-2144-9195\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Luscombe, Georgina\",\"nameType\":\"Personal\",\"givenName\":\"Georgina\",\"familyName\":\"Luscombe\",\"affiliation\":[{\"name\":\"The University of Sydney\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4767-5131\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Handelsman, David\",\"nameType\":\"Personal\",\"givenName\":\"David\",\"familyName\":\"Handelsman\",\"affiliation\":[{\"name\":\"The University of Sydney\"}],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4200-7476\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Supplementary information on a novel way of defining longitudinal adolescent trajectories of testosterone and estradiol change in pubertal adolescents\"}],\"publisher\":\"The University of Sydney\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"This is the supplementary information document corresponding to the manuscript: \\\"Steinbeck KS, Garden FL, Cheng HL, Luscombe GM, Handelsman DJ. Bumpy and smoother pathways of puberty hormone change: A novel way to define gonadal hormone trajectories in adolescents. Journal of the Endocrine Society 2019; DOI: 10.1210/jendso/bvz014\\\" This document contains additional details on the growth-mixture modelling methodology used in the study, additional tables containing model-fit statistics and model-class comparisons, as well as additional figures generated during the model-fitting process.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://ses.library.usyd.edu.au/handle/2123/21318\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-05T21:32:22.000Z\",\"registered\":\"2019-11-05T21:32:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"ands.centre11\",\"type\":\"clients\"}}}},{\"id\":\"10.70014/opus-293\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70014/opus-293\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70014/opus-293\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Testautor\",\"nameType\":\"Personal\",\"familyName\":\"Testautor\",\"affiliation\":[]}],\"titles\":[{\"lang\":\"de\",\"title\":\"Dies ist eine Testmonographie\"}],\"publisher\":\"Fachhochschule Dortmund\",\"container\":{},\"publicationYear\":2017,\"subjects\":[{\"lang\":\"de\",\"subject\":\"101 Theorie der Philosophie\",\"schemeUri\":\"https://dewey.info/\",\"subjectScheme\":\"dewey\"}],\"contributors\":[],\"dates\":[{\"date\":\"2017-01-26\",\"dateType\":\"Created\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":\"de\",\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Deutsches Urheberrecht\",\"rightsUri\":\"https://dejure.org/gesetze/UrhG\"}],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"Dortmund\"}],\"fundingReferences\":[],\"url\":\"https://opustest.bsz-bw.de/fhdo/293\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-09T12:07:05.000Z\",\"registered\":\"2019-04-09T12:07:06.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-23T07:33:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"tib.test-fhdo\",\"type\":\"clients\"}}}},{\"id\":\"10.80025/cnp1010743\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80025/cnp1010743\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80025/cnp1010743\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"tong, tong\",\"nameType\":\"Personal\",\"givenName\":\"tong\",\"familyName\":\"tong\",\"affiliation\":[]}],\"titles\":[{\"title\":\"shoukong12-121312312321312312312\"}],\"publisher\":\"CNGB\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Assembly\"},{\"subject\":\"Monoisolate\"}],\"contributors\":[{\"name\":\"tong, tong\",\"nameType\":\"Personal\",\"givenName\":\"tong\",\"familyName\":\"tong\",\"contributorType\":\"DataCollector\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-10-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[{\"lang\":null,\"description\":null,\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://test.dc.org:4002/search/project/CNP1010743/\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-10-25T07:17:14.000Z\",\"registered\":\"2019-10-25T07:23:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"cngb.gsa\",\"type\":\"clients\"}}}},{\"id\":\"10.4124/r9k643b116b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.4124/r9k643b116b\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.4124/r9k643b116b\",\"identifierType\":\"DOI\"},{\"identifier\":\"ark:/12345/r9k643b116b\",\"identifierType\":\"ARK\"}],\"creators\":[{\"name\":\"Test Test\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Test test test: antique-cash-coins-210600 [image]\"}],\"publisher\":\"Durham University\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"test\",\"schemeUri\":\"http://fast.oclc.org/\",\"subjectScheme\":\"FAST\"},{\"subject\":\"test\"}],\"contributors\":[{\"name\":\"Durham University\",\"affiliation\":[]},{\"name\":\"Durham University\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-06-17\",\"dateType\":\"Submitted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"FIGURE\",\"bibtex\":\"misc\",\"citeproc\":\"graphic\",\"schemaOrg\":\"ImageObject\",\"resourceType\":\"Image\",\"resourceTypeGeneral\":\"Image\"},\"relatedIdentifiers\":[],\"sizes\":[\"798004\"],\"formats\":[\"image/jpeg\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution 4.0 International (CC BY)\",\"rightsUri\":\"http://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://collections.durham.ac.uk/files/r9k643b116b\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-17T10:38:53.000Z\",\"registered\":\"2019-06-17T10:38:56.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-23T07:33:10.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.durham\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"bl.bath\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Bath\",\"symbol\":\"BL.BATH\",\"year\":2014,\"contactEmail\":\"c.j.pink@bath.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"bath.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-04-02T09:33:09.000Z\",\"updated\":\"2018-08-26T01:30:38.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.ubhd\",\"type\":\"clients\",\"attributes\":{\"name\":\"UBHD\",\"symbol\":\"GESIS.UBHD\",\"year\":2013,\"contactEmail\":\"Dimitar.Dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"archiv.ub.uni-heidelberg.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2013-04-17T11:24:10.000Z\",\"updated\":\"2018-08-26T01:30:35.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"ands.c171\",\"type\":\"clients\",\"attributes\":{\"name\":\"Torrens University\",\"symbol\":\"ANDS.C171\",\"year\":2019,\"contactEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"torrens.edu.au,torrens.figshare.com,figshare.com,figsh.com\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2019-02-26T01:09:36.000Z\",\"updated\":\"2020-03-11T23:02:59.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.rep-mola\",\"type\":\"clients\",\"attributes\":{\"name\":\"British Library Repository Test MOLA\",\"symbol\":\"BL.REP-MOLA\",\"year\":2019,\"contactEmail\":\"datasets@bl.uk\",\"alternateName\":null,\"description\":\"British Library Repository Test account for Museum of London Achaeology\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"https://sandbox.repo-test.ubiquity.press/\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":\"https://sandbox.repo-test.ubiquity.press/\",\"created\":\"2019-02-13T11:33:10.000Z\",\"updated\":\"2019-02-13T11:38:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dryad.cdl\",\"type\":\"clients\",\"attributes\":{\"name\":\"CDL\",\"symbol\":\"DRYAD.CDL\",\"year\":2018,\"contactEmail\":\"Scott.Fisher@ucop.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-09-11T16:35:15.000Z\",\"updated\":\"2018-11-24T14:47:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dryad\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"dev.adama\",\"type\":\"clients\",\"attributes\":{\"name\":\"Adama Science and Technology University\",\"symbol\":\"DEV.ADAMA\",\"year\":2019,\"contactEmail\":\"tesema.getachew2011@gmail.com\",\"alternateName\":\"Adama Science and Technology University\",\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2019-12-04T11:07:58.000Z\",\"updated\":\"2019-12-04T11:26:26.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"dev\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"osti.nimh\",\"type\":\"clients\",\"attributes\":{\"name\":\"National Institutes of Health, National Institute of Mental Health\",\"symbol\":\"OSTI.NIMH\",\"year\":2014,\"contactEmail\":\"ensorn@osti.gov\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"ndar.nih.gov,ndct.nimh.nih.gov,rdocdb.nimh.nih.gov,pediatricmri.nih.gov\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-09-24T14:54:20.000Z\",\"updated\":\"2018-08-26T01:30:41.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"osti\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.efe\",\"type\":\"clients\",\"attributes\":{\"name\":\"Écoles françaises à l’étranger\",\"symbol\":\"INIST.EFE\",\"year\":2019,\"contactEmail\":\"informatique@resefe.fr\",\"alternateName\":null,\"description\":\"Les Écoles françaises à l’étranger (EFE) constituent un réseau de cinq établissements d’enseignement supérieur et de recherche, régis par le décret 2011-164 du 10 février 2011. Établies en Grèce (École française d’Athènes, 1846), en Italie (École française de Rome, 1875), en Égypte (Institut français d’archéologie orientale, Le Caire, 1880), en Asie (École française d’Extrême-Orient, Paris, 1898) et en Espagne (Casa de Velázquez, Madrid, 1920), elles remplissent une triple mission de formation, de recherche et de diffusion en sciences humaines et sociales. Elles accueillent des jeunes chercheurs au niveau doctorat ou post-doctorat, s’appuient sur une communauté de chercheurs confirmés, français ou étrangers, et publient une centaine de volumes par an. Elles développent dans les pays d’accueil des réseaux de collaboration et de coopération qui font d’elles des acteurs irremplaçables de la recherche française à l’étranger. Depuis 2015, elles sont dotées d’un \\\"comité des directeurs\\\" qui pilote les opérations communes du réseau.\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"http://www.resefe.fr/\",\"created\":\"2019-12-17T08:33:09.000Z\",\"updated\":\"2019-12-17T20:19:52.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.inria\",\"type\":\"clients\",\"attributes\":{\"name\":\"Institut national de recherche en informatique et automatique\",\"symbol\":\"INIST.INRIA\",\"year\":2016,\"contactEmail\":\"edition.ies@inria.fr\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"episciences.org\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-11-30T12:10:51.000Z\",\"updated\":\"2020-01-23T15:54:19.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"inist.uppa\",\"type\":\"clients\",\"attributes\":{\"name\":\"UNIVERSITÉ DE PAU ET DES PAYS DE L'ADOUR\",\"symbol\":\"INIST.UPPA\",\"year\":2019,\"contactEmail\":\"gaelle.chancerel@univ-pau.fr\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"univ.pau.fr\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://www.univ-pau.fr/fr/index.html\",\"created\":\"2019-02-05T08:08:35.000Z\",\"updated\":\"2019-10-14T12:42:07.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gesis.fid\",\"type\":\"clients\",\"attributes\":{\"name\":\"FID für internationale und interdisziplinäre Rechtsforschung\",\"symbol\":\"GESIS.FID\",\"year\":2015,\"contactEmail\":\"dimitar.dimitrov@gesis.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"intr2dok.vifa-recht.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2015-03-17T08:00:02.000Z\",\"updated\":\"2018-08-26T01:30:47.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gesis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"google.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"Google research\",\"symbol\":\"GOOGLE.TEST\",\"year\":2019,\"contactEmail\":\"christinech@google.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2019-07-12T13:21:27.000Z\",\"updated\":\"2019-08-19T20:26:48.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"google\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tind.umn\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Minnesota\",\"symbol\":\"TIND.UMN\",\"year\":2016,\"contactEmail\":\"audun@tind.io\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"tind.io\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2016-09-14T11:22:40.000Z\",\"updated\":\"2019-07-11T11:18:24.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tind\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"orbis.uwl\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Washington Libraries\",\"symbol\":\"ORBIS.UWL\",\"year\":2018,\"contactEmail\":\"jmuil@uw.edu\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-02-13T15:59:04.000Z\",\"updated\":\"2019-02-07T21:07:03.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"orbis\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.confident-test\",\"type\":\"clients\",\"attributes\":{\"name\":\"ConfIDent\",\"symbol\":\"TIB.CONFIDENT-TEST\",\"year\":2020,\"contactEmail\":\"confident@tib.eu\",\"alternateName\":null,\"description\":null,\"language\":[\"en\",\"de\"],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://projects.tib.eu/confident/\",\"created\":\"2020-01-16T12:01:47.000Z\",\"updated\":\"2020-01-16T12:04:16.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcanu.dc\",\"type\":\"clients\",\"attributes\":{\"name\":\"ANU Data Commons\",\"symbol\":\"ARDCANU.DC\",\"year\":2020,\"contactEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"anu.edu.au researchdata.ands.org.au\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2020-03-20T01:33:36.000Z\",\"updated\":\"2020-03-25T04:53:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ardcanu\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bceln.bcelnrep\",\"type\":\"clients\",\"attributes\":{\"name\":\"Arca\",\"symbol\":\"BCELN.BCELNREP\",\"year\":2020,\"contactEmail\":\"brandonw@bceln.ca\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://arcabc.ca\",\"created\":\"2020-02-28T23:57:11.000Z\",\"updated\":\"2020-03-09T16:55:56.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bceln\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dcan\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"ardcanu.dc2\",\"type\":\"clients\",\"attributes\":{\"name\":\"ANU Data Commons 2 Test Repository\",\"symbol\":\"ARDCANU.DC2\",\"year\":2020,\"contactEmail\":\"joel.benn@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchdata.ands.org.au\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2020-03-29T23:27:09.000Z\",\"updated\":\"2020-03-30T00:14:24.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ardcanu\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"ardcco\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.ubde\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitätsbibliothek Duisburg-Essen\",\"symbol\":\"TIB.UBDE\",\"year\":2015,\"contactEmail\":\"frank.luetzenkirchen@uni-due.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"duepublico.uni-duisburg-essen.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2015-02-13T06:00:02.000Z\",\"updated\":\"2019-01-23T15:37:07.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.reikkaps\",\"type\":\"clients\",\"attributes\":{\"name\":\"Leibniz Universität IT Services (LUIS), Forschungsdatenmanagement\",\"symbol\":\"TIB.REIKKAPS\",\"year\":2015,\"contactEmail\":\"kaps@luis.uni-hannover.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"fdm.rrzn.uni-hannover.de\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2015-12-01T10:44:59.000Z\",\"updated\":\"2018-08-26T01:30:53.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"ands.c202\",\"type\":\"clients\",\"attributes\":{\"name\":\"R31_d Testing DELETE\",\"symbol\":\"ANDS.C202\",\"year\":2019,\"contactEmail\":\"services@ands.org.au\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"devl.ands.org.au\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2019-03-20T23:51:16.000Z\",\"updated\":\"2019-03-20T23:56:10.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"ands.centre11\",\"type\":\"clients\",\"attributes\":{\"name\":\"University of Sydney Library\",\"symbol\":\"ANDS.CENTRE11\",\"year\":2012,\"contactEmail\":\"services@ardc.edu.au\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"researchdata.ands.org.au,doi.library.usyd.edu.au,nswaol.library.usyd.edu.au,sydney.edu.au,usyd.edu.au,nswaol.library.sydney.edu.au,library.sydney.edu.au,*.local,syd.dgicloud.com,*.dgi\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2012-05-17T00:31:30.000Z\",\"updated\":\"2020-03-11T22:59:35.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"ands\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"tib.test-fhdo\",\"type\":\"clients\",\"attributes\":{\"name\":\"Fachhochschule Dortmund, Hochschulbibliothek\",\"symbol\":\"TIB.TEST-FHDO\",\"year\":2019,\"contactEmail\":\"eva.schameitat@fh-dortmund.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2019-04-08T09:20:31.000Z\",\"updated\":\"2019-04-08T11:39:33.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"tib\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"cngb.gsa\",\"type\":\"clients\",\"attributes\":{\"name\":\"GSA\",\"symbol\":\"CNGB.GSA\",\"year\":2019,\"contactEmail\":\"jesse@gigasciencejournal.com\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2019-09-09T03:00:11.000Z\",\"updated\":\"2019-09-09T03:11:15.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"cngb\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.durham\",\"type\":\"clients\",\"attributes\":{\"name\":\"Durham University\",\"symbol\":\"BL.DURHAM\",\"year\":2014,\"contactEmail\":\"sebastian.palucha@durham.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"durham.ac.uk,dur.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2014-08-20T09:11:29.000Z\",\"updated\":\"2018-08-26T01:30:40.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1145130,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1145130}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":847908},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":135702},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":51460},{\"id\":\"other\",\"title\":\"Other\",\"count\":26115},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":9789},{\"id\":\"image\",\"title\":\"Image\",\"count\":4567},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4502},{\"id\":\"software\",\"title\":\"Software\",\"count\":3563},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":668},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":489},{\"id\":\"service\",\"title\":\"Service\",\"count\":110},{\"id\":\"event\",\"title\":\"Event\",\"count\":78},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":59},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":37},{\"id\":\"model\",\"title\":\"Model\",\"count\":32}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":219346},{\"id\":\"2019\",\"title\":\"2019\",\"count\":882557},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38098},{\"id\":\"2017\",\"title\":\"2017\",\"count\":4107},{\"id\":\"2016\",\"title\":\"2016\",\"count\":136},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":8},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":8},{\"id\":\"2024\",\"title\":\"2024\",\"count\":12},{\"id\":\"2023\",\"title\":\"2023\",\"count\":22},{\"id\":\"2022\",\"title\":\"2022\",\"count\":34},{\"id\":\"2021\",\"title\":\"2021\",\"count\":76},{\"id\":\"2020\",\"title\":\"2020\",\"count\":108525},{\"id\":\"2019\",\"title\":\"2019\",\"count\":245402},{\"id\":\"2018\",\"title\":\"2018\",\"count\":76504},{\"id\":\"2017\",\"title\":\"2017\",\"count\":32417},{\"id\":\"2016\",\"title\":\"2016\",\"count\":31687},{\"id\":\"2015\",\"title\":\"2015\",\"count\":31668},{\"id\":\"2014\",\"title\":\"2014\",\"count\":32810},{\"id\":\"2013\",\"title\":\"2013\",\"count\":104226},{\"id\":\"2012\",\"title\":\"2012\",\"count\":173709},{\"id\":\"2011\",\"title\":\"2011\",\"count\":38692},{\"id\":\"2010\",\"title\":\"2010\",\"count\":18734},{\"id\":\"2009\",\"title\":\"2009\",\"count\":17677},{\"id\":\"2008\",\"title\":\"2008\",\"count\":19174},{\"id\":\"2007\",\"title\":\"2007\",\"count\":14557},{\"id\":\"2006\",\"title\":\"2006\",\"count\":12706},{\"id\":\"2005\",\"title\":\"2005\",\"count\":9771},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14095},{\"id\":\"2003\",\"title\":\"2003\",\"count\":10804},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13013},{\"id\":\"2001\",\"title\":\"2001\",\"count\":8699},{\"id\":\"2000\",\"title\":\"2000\",\"count\":9904},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7290},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5467},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7061},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4186},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3645},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3088},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3156},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2685},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2515},{\"id\":\"1990\",\"title\":\"1990\",\"count\":2030},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1684},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1621},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1805},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1892},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1615},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1450},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1570},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1376},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1176},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4627},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1046},{\"id\":\"1978\",\"title\":\"1978\",\"count\":990},{\"id\":\"1977\",\"title\":\"1977\",\"count\":923},{\"id\":\"1976\",\"title\":\"1976\",\"count\":874},{\"id\":\"1975\",\"title\":\"1975\",\"count\":818},{\"id\":\"1974\",\"title\":\"1974\",\"count\":846},{\"id\":\"1973\",\"title\":\"1973\",\"count\":746},{\"id\":\"1972\",\"title\":\"1972\",\"count\":703},{\"id\":\"1971\",\"title\":\"1971\",\"count\":689},{\"id\":\"1970\",\"title\":\"1970\",\"count\":572},{\"id\":\"1969\",\"title\":\"1969\",\"count\":508},{\"id\":\"1968\",\"title\":\"1968\",\"count\":500},{\"id\":\"1967\",\"title\":\"1967\",\"count\":724},{\"id\":\"1966\",\"title\":\"1966\",\"count\":538},{\"id\":\"1965\",\"title\":\"1965\",\"count\":548},{\"id\":\"1964\",\"title\":\"1964\",\"count\":493},{\"id\":\"1963\",\"title\":\"1963\",\"count\":427},{\"id\":\"1962\",\"title\":\"1962\",\"count\":454},{\"id\":\"1961\",\"title\":\"1961\",\"count\":374},{\"id\":\"1960\",\"title\":\"1960\",\"count\":345},{\"id\":\"1959\",\"title\":\"1959\",\"count\":316},{\"id\":\"1958\",\"title\":\"1958\",\"count\":337},{\"id\":\"1957\",\"title\":\"1957\",\"count\":355},{\"id\":\"1956\",\"title\":\"1956\",\"count\":274},{\"id\":\"1955\",\"title\":\"1955\",\"count\":251},{\"id\":\"1954\",\"title\":\"1954\",\"count\":407},{\"id\":\"1953\",\"title\":\"1953\",\"count\":205},{\"id\":\"1952\",\"title\":\"1952\",\"count\":189},{\"id\":\"1951\",\"title\":\"1951\",\"count\":256},{\"id\":\"1950\",\"title\":\"1950\",\"count\":205},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":185},{\"id\":\"1947\",\"title\":\"1947\",\"count\":112},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":73},{\"id\":\"1944\",\"title\":\"1944\",\"count\":134},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":64},{\"id\":\"1938\",\"title\":\"1938\",\"count\":128},{\"id\":\"1937\",\"title\":\"1937\",\"count\":74},{\"id\":\"1936\",\"title\":\"1936\",\"count\":114},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":132},{\"id\":\"1933\",\"title\":\"1933\",\"count\":297},{\"id\":\"1932\",\"title\":\"1932\",\"count\":190},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":160},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":92},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":50},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":42},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":178},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":39},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":66},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":62},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":31},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":43},{\"id\":\"1888\",\"title\":\"1888\",\"count\":33},{\"id\":\"1887\",\"title\":\"1887\",\"count\":25},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":48},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":35},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":6},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":103550},{\"id\":\"2019\",\"title\":\"2019\",\"count\":189536},{\"id\":\"2018\",\"title\":\"2018\",\"count\":37981},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1653},{\"id\":\"2016\",\"title\":\"2016\",\"count\":127},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803750},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":75077},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":42639},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":30372},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27636},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":17644},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":17401},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15035},{\"id\":\"gdcc\",\"title\":\"The Global Dataverse Community Consortium (GDCC)\",\"count\":10055},{\"id\":\"delft\",\"title\":\"TU Delft Library\",\"count\":9014},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":8621},{\"id\":\"pitp\",\"title\":\"Perimeter Institute for Theoretical Physics\",\"count\":8357},{\"id\":\"gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":7769},{\"id\":\"ands\",\"title\":\"Australian Research Data Commons\",\"count\":7442}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803750},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":75077},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27560},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24514},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17296},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15030},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13191},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":8466},{\"id\":\"pitp.pirsa\",\"title\":\"Perimeter Institute\",\"count\":8357},{\"id\":\"demo.umd\",\"title\":\"University of Maryland Libraries\",\"count\":8031},{\"id\":\"gbif.gbif\",\"title\":\"Global Biodiversity Information Facility\",\"count\":7768},{\"id\":\"gdcc.harvard-test\",\"title\":\"Harvard Dataverse Test Account\",\"count\":7559},{\"id\":\"dk.sb\",\"title\":\"Statsbiblioteket\",\"count\":5813}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8357},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":97},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":38},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":7},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":6},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":5},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/00x6h5n95\",\"title\":\"Dryad Digital Repository\",\"count\":2},{\"id\":\"ror.org/01523aj77\",\"title\":\"Sig Holding (Switzerland)\",\"count\":2},{\"id\":\"ror.org/05dxps055\",\"title\":\"California Institute of Technology\",\"count\":2},{\"id\":\"ror.org/05xpvk416\",\"title\":\"National Institute of Standards and Technology\",\"count\":2},{\"id\":\"ror.org/005cgd502\",\"title\":\"Digital Authentication Technologies (United States)\",\"count\":1},{\"id\":\"ror.org/00987cb86\",\"title\":\"Sao Paulo State University\",\"count\":1}],\"prefixes\":[{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130738},{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":75077},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58818},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56676},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34961},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27560},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20631},{\"id\":\"10.1038\",\"title\":\"10.1038\",\"count\":19569},{\"id\":\"10.1093\",\"title\":\"10.1093\",\"count\":18334},{\"id\":\"10.3390\",\"title\":\"10.3390\",\"count\":18301},{\"id\":\"10.1098\",\"title\":\"10.1098\",\"count\":17671},{\"id\":\"10.24335\",\"title\":\"10.24335\",\"count\":16574}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2881},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":708}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":986301},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":5158},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":3}],\"sources\":[{\"id\":\"levriero\",\"title\":\"Levriero\",\"count\":803750},{\"id\":\"mds\",\"title\":\"Mds\",\"count\":241960},{\"id\":\"ez\",\"title\":\"Ez\",\"count\":3871},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":277},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":117},{\"id\":\"test\",\"title\":\"Test\",\"count\":21},{\"id\":\"Elettra\",\"title\":\"Elettra\",\"count\":5},{\"id\":\"MCX\",\"title\":\"Mcx\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":24450},{\"id\":\"404\",\"title\":\"404\",\"count\":3335},{\"id\":\"403\",\"title\":\"403\",\"count\":977},{\"id\":\"401\",\"title\":\"401\",\"count\":281},{\"id\":\"500\",\"title\":\"500\",\"count\":277},{\"id\":\"503\",\"title\":\"503\",\"count\":142},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":11},{\"id\":\"502\",\"title\":\"502\",\"count\":2}],\"linksChecked\":874,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":63048},{\"id\":\"1\",\"title\":\"1\",\"count\":3873}],\"linkChecksSchemaOrgId\":1637,\"linkChecksDcIdentifier\":4747,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Anatomy\",\"title\":\"Anatomy\",\"count\":27517},{\"id\":\"Cat\",\"title\":\"Cat\",\"count\":19369},{\"id\":\"80505 Web Technologies (excl. Web Search)\",\"title\":\"80505 Web Technologies (Excl. Web Search)\",\"count\":9383},{\"id\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, etc.)\",\"title\":\"79901 Agricultural Hydrology (Drainage, Flooding, Irrigation, Quality, Etc.)\",\"count\":7669},{\"id\":\"biodiversity\",\"title\":\"Biodiversity\",\"count\":5221},{\"id\":\"GBIF\",\"title\":\"Gbif\",\"count\":5218},{\"id\":\"species occurrences\",\"title\":\"Species Occurrences\",\"count\":5218},{\"id\":\"Biochemistry\",\"title\":\"Biochemistry\",\"count\":4578},{\"id\":\"60101 Analytical Biochemistry\",\"title\":\"60101 Analytical Biochemistry\",\"count\":3490},{\"id\":\"80101 Adaptive Agents and Intelligent Robotics\",\"title\":\"80101 Adaptive Agents And Intelligent Robotics\",\"count\":3462},{\"id\":\"Natural Sciences - Mathematics (1.1)\",\"title\":\"Natural Sciences Mathematics (1.1)\",\"count\":3265},{\"id\":\"Computer Engineering\",\"title\":\"Computer Engineering\",\"count\":3216},{\"id\":\"Genetic Engineering\",\"title\":\"Genetic Engineering\",\"count\":3189},{\"id\":\"Aerospace Engineering\",\"title\":\"Aerospace Engineering\",\"count\":3178},{\"id\":\"Nuclear Engineering\",\"title\":\"Nuclear Engineering\",\"count\":3143}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" + "size": 109001, + "text": "{\"data\":[{\"id\":\"10.21410/fk27hbr5f/2nrlcf\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/2nrlcf\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1982-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/2NRLCF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f/1aoley\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f/1aoley\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK27HBR5F\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk27hbr5f\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK27HBR5F/1AOLEY\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:31.000Z\",\"registered\":\"2020-05-04T16:06:32.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk27hbr5f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk27hbr5f\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1982)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/2nrlcf\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk27hbr5f/1aoley\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK27HBR5F\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:26.000Z\",\"registered\":\"2020-05-04T16:06:28.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:32.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1981)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/5msoef\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2efuldr/isjqad\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2EFULDR\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:14.000Z\",\"registered\":\"2020-05-04T16:06:16.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/isjqad\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/isjqad\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/ISJQAD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:19.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2efuldr/5msoef\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2efuldr/5msoef\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1981-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2EFULDR\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2efuldr\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2EFULDR/5MSOEF\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:18.000Z\",\"registered\":\"2020-05-04T16:06:19.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:19.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1978)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/xe1f9t\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk21cflyg/norj5n\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK21CFLYG\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:01.000Z\",\"registered\":\"2020-05-04T16:06:02.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/norj5n\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/norj5n\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/NORJ5N\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:07.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk21cflyg/xe1f9t\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk21cflyg/xe1f9t\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1978-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK21CFLYG\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk21cflyg\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK21CFLYG/XE1F9T\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:06:06.000Z\",\"registered\":\"2020-05-04T16:06:06.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:06:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2nmjtvz/bs6dmc\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2nmjtvz/bs6dmc\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2NMJTVZ\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2NMJTVZ/BS6DMC\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:53.000Z\",\"registered\":\"2020-05-04T16:05:54.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2nmjtvz\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2nmjtvz\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Les structures de l'opinion (1977)\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz/xii1bd\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz/bs6dmc\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"Le Commissariat à l'Énergie Atomique (CEA/IPSN/LSEES) et Électricité de France (EDF/DER) ont développé de concert, dans les années 1975, une recherche sur les ressorts du débat nucléaire. Elle a conduit à la mise en place en 1977 d'un système très particulier d'enquêtes et à la création de l'association Agoramétrie (Jean-Pierre Pagès et Karl Van Meter). Les 29 enquêtes nationales réalisées entre 1977 et 2005, dans le même esprit et en respectant les mêmes procédures, ont permis de constater que le débat public, sur l'ensemble des thèmes qui font controverse au niveau national, s'organise toujours, quelle que soit l'époque, autour des mêmes structures. Trois périodes doivent être distinguées dans la recherche menée au nom d'Agoramétrie : - 1974-1976 : la période « Héroïque ». Des petites enquêtes par entretien et par sondage sur l'opinion et le nucléaire ont été menées par le Laboratoire de Statistiques et d'Etudes Economiques et Sociales (CEA/IPSN/LSEES) en relation avec l'Institut de Statistique des Universités de Paris (ISUP) et l'Université de Grenoble. Ce sont ces enquêtes préliminaires, dont les données ne sont pas disponibles, qui sont à l'origine de la création d'Agoramétrie et de la mise en place de son système d'enquêtes. Il était apparu que le nucléaire était, au niveau des opinions, loin d'être une énergie comme les autres. Étant l'objet d'une controverse politico-médiatique, il devait être analysé par comparaison, non pas avec les autres énergies, mais avec les autres controverses qui agitaient au même moment l'espace public. Au delà des opinions sur le nucléaire et de leur évolution, la compréhension du débat public autour de tout ce qui fait controverse a donc été retenue comme principal objectif de la recherche à Agoramétrie. Inspirée des travaux de Gabrielle Tarde et de Pierre Bourdieu, l'approche du débat public alors empruntée peut être qualifiée de « structuralo-constructiviste ». - 1977-1991: la période « Structures de l'opinion publique ». Les 13 enquêtes annuelles qui ont été réalisées (les données recueillies lors de la petite enquête de juin 1981 ont été perdues) portent en priorité sur le débat public autour de l'ensemble de toutes les controverses politico-médiatiques. Il s'agit d'en étudier les structures. Le nombre d'entretiens, d'une durée moyenne d'une demi-heure, varie entre 1 000 à 2 000 environ d'une enquête à l'autre. Ce sont les structures dégagées en mars 1981 qui ont servi par la suite à Agoramétrie de « structures de référence » : pour se « recaler » sur ces structures, la « méthode de la greffe » a été mise au point. - 1992-2005: la période « Baromètre nucléaire ». Suite aux bons résultats obtenus entre 1977 et 1991, une place beaucoup plus grande a été réservée aux opinions sur le nucléaire dans les questionnaires des 16 enquêtes qui ont été réalisées entre mars 1992 et décembre 2005. Il faut distinguer ici deux types d'enquêtes : 1. Les enquêtes « approfondies » (enquêtes « point zéro » ou « de recalage ») qui permettent de replacer toute controverse, dont le nucléaire, dans les structures extraites précédemment. Faites environ tous les cinq ans, elles reposent sur 2 000 entretiens environ, d'une durée moyenne de une heure. 2. Les enquêtes légères ou « de suivi » qui comptent deux fois moins d'entretiens, de durée moyenne deux fois moindre. Si les questionnaires évoluent d'une enquête à l'autre, des précautions sont prises pour éviter autant qu'il est possible les « effets de halo ». L'enquête « Les structures de l'opinion 1977 » est la première enquête du dispositif (hors enquêtes préliminaires). Elle prend en compte 56 controverses politico-médiatiques, 24 arguments nucléaires et 21 propositions sur l'image des services publiques. Le sondage est réalisé par la SECED qui a la responsabilité des interviews (1000 interviews réalisées).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2NMJTVZ\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":1,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:48.000Z\",\"registered\":\"2020-05-04T16:05:49.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2nmjtvz/xii1bd\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2nmjtvz/xii1bd\",\"identifiers\":[],\"creators\":[{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"fr.cdsp.ddi.AGORA1977-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2NMJTVZ\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Sciences Po, Centre De Données Socio-Politiques (CDSP), CNRS\",\"nameType\":\"Personal\",\"affiliation\":[{\"name\":\"(Sciences Po, CNRS)\"}],\"contributorType\":\"ContactPerson\",\"nameIdentifiers\":[]},{\"name\":\"Pagès, Jean-Pierre\",\"nameType\":\"Personal\",\"givenName\":\"Jean-Pierre\",\"familyName\":\"Pagès\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Agrafiotis, Démosthène\",\"nameType\":\"Personal\",\"givenName\":\"Démosthène\",\"familyName\":\"Agrafiotis\",\"affiliation\":[{\"name\":\"(Commissariat à l'Énergie Atomique, Laboratoire de statistiques et d'études économiques et sociales (LSESS), IPSN)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Favre, Jean\",\"nameType\":\"Personal\",\"givenName\":\"Jean\",\"familyName\":\"Favre\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]},{\"name\":\"Morlat, Georges\",\"nameType\":\"Personal\",\"givenName\":\"Georges\",\"familyName\":\"Morlat\",\"affiliation\":[{\"name\":\"(Électricité de France, Direction des études et recherches)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2nmjtvz\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2NMJTVZ/XII1BD\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:53.000Z\",\"registered\":\"2020-05-04T16:05:53.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2dfs3ta\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2dfs3ta\",\"identifiers\":[],\"creators\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Database regarding the North Indian MPs since 1952\"}],\"publisher\":\"data Sciences Po\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta/qtaccg\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta/ibazgl\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"description\":\"This database is a unique achievement to which we are happy to give you a free access. It covers the members of the lower house of the Indian parliament (the House of the People or Lok Sabha) who have been elected between the first general elections of 1951-52 and the fourteenth ones in 2004 in the Hindi-speaking states (Bihar, Chandigarh, Chhattisgarh, Delhi, Haryana, Himachal Pradesh, Jharkhand, Madhya Pradesh, Rajasthan, Uttar Pradesh, Uttarakhand). Many of these states did not exist in 1951-52. We have done as if they did by pooling together the constituencies which were to form them in order to make inter-temporal comparisons possible. For each Lok Sabha MP, this database provides their surname, first name, constituency, state of birth, party, gender, date of birth, religion, caste, level of education, and occupation. These data draw from the Election Commission publications, the website Who's Who in Lok Sabha [the only website I found today is the Parliament of India, Lok Sabha, https://loksabha.nic.in/]. and individual interviews with the MPs themselves or party old timers. Such a database can only result from a collective endeavour. It was initiated by Christophe Jaffrelot who collected most of the data year after year from the mid-1990s onwards. Elisabeth Theunissen, Cyril Robin, Virginie Dutoya, and Zuheir Desai played a major role successively over the last fifteen years. These data have been analysed in two books dealing with the growing presence of the low caste groups on the Indian political scene: Christophe Jaffrelot, India's silent revolution - The rise of the lower castes in North Indian politics (New York, Columbia University Press, 2003), and Christophe Jaffrelot, \\\"Introduction\\\", in Christophe Jaffrelot and Sanjay Kumar (eds), Rise of the plebeians ? The changing face of Indian legislative assemblies, New Delhi, Routledge, 2009.\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/citation?persistentId=doi:10.21410/FK2DFS3TA\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":2,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:35.000Z\",\"registered\":\"2020-05-04T16:05:35.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:41.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2dfs3ta/ibazgl\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2dfs3ta/ibazgl\",\"identifiers\":[],\"creators\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"readme.txt\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2DFS3TA\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2DFS3TA/IBAZGL\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:40.000Z\",\"registered\":\"2020-05-04T16:05:40.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.21410/fk2dfs3ta/qtaccg\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21410/fk2dfs3ta/qtaccg\",\"identifiers\":[],\"creators\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"en.cdsp.ddi.NorthIndianMPs-ddi25.xml\"}],\"publisher\":\"data Sciences Po\",\"container\":{\"type\":\"DataRepository\",\"identifier\":\"doi:10.21410/FK2DFS3TA\",\"identifierType\":\"DOI\"},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Jaffrelot, Christophe\",\"nameType\":\"Personal\",\"givenName\":\"Christophe\",\"familyName\":\"Jaffrelot\",\"affiliation\":[{\"name\":\"(Sciences Po, Centre d'études et de recherches internationales (CERI), CNRS)\"}],\"contributorType\":\"Producer\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.21410/fk2dfs3ta\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[{\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://dataspire-test.sciencespo.fr/file.xhtml?persistentId=doi:10.21410/FK2DFS3TA/QTACCG\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:05:39.000Z\",\"registered\":\"2020-05-04T16:05:40.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:05:40.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"inist.cdsp\",\"type\":\"clients\"}}}},{\"id\":\"10.25601/j552-sk30\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.25601/j552-sk30\",\"identifiers\":[],\"creators\":[{\"name\":\"Wickens, Neve\",\"nameType\":\"Personal\",\"givenName\":\"Neve\",\"familyName\":\"Wickens\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Rodriguez, Carlton\",\"nameType\":\"Personal\",\"givenName\":\"Carlton\",\"familyName\":\"Rodriguez\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Lecturer, Beth\",\"nameType\":\"Personal\",\"givenName\":\"Beth\",\"familyName\":\"Lecturer\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"Approver Test 03 - Cartilage damage and deterioration to the joint surface – new challenges; new solutions\"}],\"publisher\":\"University of Hendra\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://test.uat.jiscrepository.com/view/dataset/97e51fe0-2cc5-4ff8-ba94-971fe7880213\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:03:22.000Z\",\"registered\":\"2020-05-04T16:03:23.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T16:03:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"bl.jisc\",\"type\":\"clients\"}}}},{\"id\":\"10.18716/nmrshiftdb2/76923\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.18716/nmrshiftdb2/76923\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.18716/nmrshiftdb2/76923\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Various\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"NMR data for InChI=1S/C4HCl3O2/c5-1-2(6)4(8)9-3(1)7/h3H\"}],\"publisher\":\"University of Cologne\",\"container\":{},\"publicationYear\":2005,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2005\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"NMR measurements\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://handle.test.datacite.org/10.18716/nmrshiftdb2/76923\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-28T16:33:21.000Z\",\"registered\":\"2020-04-28T16:33:22.000Z\",\"published\":\"2005\",\"updated\":\"2020-05-04T15:57:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.1584932725458\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.1584932725458\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.1584932725458\",\"identifierType\":\"DOI\"},{\"identifier\":\"38f06820-08c5-42b2-94f6-47cc3e83a54a\",\"identifierType\":\"UUID\"}],\"creators\":[{\"name\":\"CLI TEST\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"gbif.org\",\"nameIdentifier\":\"gbif.orgCLI TEST\",\"nameIdentifierScheme\":\"GBIF\"}]}],\"titles\":[{\"title\":\"DatasetSynchronizer test dataset\"}],\"publisher\":\"The BGBM\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020-02-22\",\"dateType\":\"Created\"},{\"date\":\"2020-02-21\",\"dateType\":\"Updated\"},{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"dan\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"OCCURRENCE\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"description\":\"Test dataset\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://www.gbif-dev.orgdataset/38f06820-08c5-42b2-94f6-47cc3e83a54a\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-23T03:05:44.000Z\",\"registered\":\"2020-03-23T03:05:44.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T15:48:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831220050986278\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831220050986278\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831220050986278\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:16.000Z\",\"registered\":\"2020-05-04T15:48:16.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831216975448144\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831216975448144\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831216975448144\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:13.000Z\",\"registered\":\"2020-05-04T15:48:13.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831216294296946\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831216294296946\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831216294296946\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:12.000Z\",\"registered\":\"2020-05-04T15:48:13.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831215623720968\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831215623720968\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831215623720968\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:12.000Z\",\"registered\":\"2020-05-04T15:48:12.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831214110403510\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831214110403510\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831214110403510\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:10.000Z\",\"registered\":\"2020-05-04T15:48:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831214952182971\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831214952182971\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831214952182971\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:11.000Z\",\"registered\":\"2020-05-04T15:48:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:11.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}},{\"id\":\"10.21373/gbif.22831208070943642\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21373/gbif.22831208070943642\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21373/gbif.22831208070943642\",\"identifierType\":\"DOI\"},{\"identifier\":\"0014651-190415153152247\",\"identifierType\":\"GBIF\"}],\"creators\":[{\"name\":\"Occdownload Gbif.Org\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"GBIF Occurrence Download\"}],\"publisher\":\"The Global Biodiversity Information Facility\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"lang\":\"eng\",\"subject\":\"GBIF\"},{\"lang\":\"eng\",\"subject\":\"biodiversity\"},{\"lang\":\"eng\",\"subject\":\"species occurrences\"}],\"contributors\":[],\"dates\":[{\"date\":\"2019-05-17\",\"dateType\":\"Created\"},{\"date\":\"2019-05-17\",\"dateType\":\"Updated\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"References\",\"relatedIdentifier\":\"10.21373/exwp2m\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[\"208158756\"],\"formats\":[\"Darwin Core Archive\"],\"version\":null,\"rightsList\":[{\"rights\":\"Creative Commons Attribution Non Commercial (CC-BY-NC) 4.0\",\"rightsUri\":\"http://creativecommons.org/licenses/by-nc/4.0/legalcode\"}],\"descriptions\":[{\"lang\":\"eng\",\"description\":\"A dataset containing 181 species occurrences available in GBIF matching the query: null. The dataset includes 181 records from 1 constituent datasets: 181 records from Inventory of natural and agroforestry stands characterized by Xylopia aethiopica (Dunal) A. Rich. (south-Benin).\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://www.gbif.org/datasets\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":null,\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T15:48:04.000Z\",\"registered\":\"2020-05-04T15:48:05.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T15:48:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"gbif.gbif\",\"type\":\"clients\"}}}}],\"included\":[{\"id\":\"inist.cdsp\",\"type\":\"clients\",\"attributes\":{\"name\":\"Centre de données socio-politiques\",\"symbol\":\"INIST.CDSP\",\"year\":2016,\"contactEmail\":\"genevieve.michaud@sciencespo.fr\",\"alternateName\":null,\"description\":\"Center for socio-political data (CNRS & Sciences Po)\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"dataspire-test.sciencespo.fr,cdsp.sciences-po.fr,sciences-po.fr,bequali.fr\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":\"https://cdsp.sciences-po.fr/en/\",\"created\":\"2016-08-30T14:13:09.000Z\",\"updated\":\"2019-11-14T10:13:57.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"inist\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"bl.jisc\",\"type\":\"clients\",\"attributes\":{\"name\":\"Jisc\",\"symbol\":\"BL.JISC\",\"year\":2018,\"contactEmail\":\"Dom.Fripp@jisc.ac.uk\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"jisc.ac.uk\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-11-16T11:43:08.000Z\",\"updated\":\"2018-11-16T15:28:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"bl\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"zbmed.unikoeln\",\"type\":\"clients\",\"attributes\":{\"name\":\"Universitäts- und Stadtbibliothek Köln\",\"symbol\":\"ZBMED.UNIKOELN\",\"year\":2016,\"contactEmail\":\"weber@ub.uni-koeln.de\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"uni-koeln.de,ride.i-d-e.de,pessoadigital.pt\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2016-02-17T11:03:01.000Z\",\"updated\":\"2020-05-04T09:25:09.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"zbmed\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}},{\"id\":\"gbif.gbif\",\"type\":\"clients\",\"attributes\":{\"name\":\"Global Biodiversity Information Facility\",\"symbol\":\"GBIF.GBIF\",\"year\":2018,\"contactEmail\":\"dnoesgaard@gbif.org\",\"alternateName\":null,\"description\":null,\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":null,\"url\":null,\"created\":\"2018-12-20T16:15:59.000Z\",\"updated\":\"2019-04-11T09:26:30.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"gbif\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[]}}}],\"meta\":{\"total\":1146112,\"totalPages\":400,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":1146112}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":848405},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":135123},{\"id\":\"collection\",\"title\":\"Collection\",\"count\":52000},{\"id\":\"other\",\"title\":\"Other\",\"count\":26520},{\"id\":\"audiovisual\",\"title\":\"Audiovisual\",\"count\":9792},{\"id\":\"image\",\"title\":\"Image\",\"count\":4579},{\"id\":\"physical-object\",\"title\":\"Physical Object\",\"count\":4504},{\"id\":\"software\",\"title\":\"Software\",\"count\":3587},{\"id\":\"workflow\",\"title\":\"Workflow\",\"count\":669},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":494},{\"id\":\"service\",\"title\":\"Service\",\"count\":110},{\"id\":\"model\",\"title\":\"Model\",\"count\":102},{\"id\":\"event\",\"title\":\"Event\",\"count\":78},{\"id\":\"data-paper\",\"title\":\"Data Paper\",\"count\":60},{\"id\":\"sound\",\"title\":\"Sound\",\"count\":37}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":220318},{\"id\":\"2019\",\"title\":\"2019\",\"count\":882567},{\"id\":\"2018\",\"title\":\"2018\",\"count\":38098},{\"id\":\"2017\",\"title\":\"2017\",\"count\":4107},{\"id\":\"2016\",\"title\":\"2016\",\"count\":136},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"published\":[{\"id\":\"9999\",\"title\":\"9999\",\"count\":9},{\"id\":\"3434\",\"title\":\"3434\",\"count\":2},{\"id\":\"3215\",\"title\":\"3215\",\"count\":1},{\"id\":\"3000\",\"title\":\"3000\",\"count\":1},{\"id\":\"2323\",\"title\":\"2323\",\"count\":1},{\"id\":\"2222\",\"title\":\"2222\",\"count\":5},{\"id\":\"2221\",\"title\":\"2221\",\"count\":1},{\"id\":\"2200\",\"title\":\"2200\",\"count\":1},{\"id\":\"2106\",\"title\":\"2106\",\"count\":1},{\"id\":\"2100\",\"title\":\"2100\",\"count\":8},{\"id\":\"2099\",\"title\":\"2099\",\"count\":1},{\"id\":\"2039\",\"title\":\"2039\",\"count\":1},{\"id\":\"2032\",\"title\":\"2032\",\"count\":1},{\"id\":\"2030\",\"title\":\"2030\",\"count\":27},{\"id\":\"2025\",\"title\":\"2025\",\"count\":8},{\"id\":\"2024\",\"title\":\"2024\",\"count\":12},{\"id\":\"2023\",\"title\":\"2023\",\"count\":22},{\"id\":\"2022\",\"title\":\"2022\",\"count\":34},{\"id\":\"2021\",\"title\":\"2021\",\"count\":76},{\"id\":\"2020\",\"title\":\"2020\",\"count\":107188},{\"id\":\"2019\",\"title\":\"2019\",\"count\":245918},{\"id\":\"2018\",\"title\":\"2018\",\"count\":76700},{\"id\":\"2017\",\"title\":\"2017\",\"count\":32587},{\"id\":\"2016\",\"title\":\"2016\",\"count\":32354},{\"id\":\"2015\",\"title\":\"2015\",\"count\":31918},{\"id\":\"2014\",\"title\":\"2014\",\"count\":33048},{\"id\":\"2013\",\"title\":\"2013\",\"count\":104297},{\"id\":\"2012\",\"title\":\"2012\",\"count\":173750},{\"id\":\"2011\",\"title\":\"2011\",\"count\":38720},{\"id\":\"2010\",\"title\":\"2010\",\"count\":18789},{\"id\":\"2009\",\"title\":\"2009\",\"count\":17697},{\"id\":\"2008\",\"title\":\"2008\",\"count\":19194},{\"id\":\"2007\",\"title\":\"2007\",\"count\":14572},{\"id\":\"2006\",\"title\":\"2006\",\"count\":12711},{\"id\":\"2005\",\"title\":\"2005\",\"count\":9775},{\"id\":\"2004\",\"title\":\"2004\",\"count\":14095},{\"id\":\"2003\",\"title\":\"2003\",\"count\":10804},{\"id\":\"2002\",\"title\":\"2002\",\"count\":13016},{\"id\":\"2001\",\"title\":\"2001\",\"count\":8700},{\"id\":\"2000\",\"title\":\"2000\",\"count\":9905},{\"id\":\"1999\",\"title\":\"1999\",\"count\":7293},{\"id\":\"1998\",\"title\":\"1998\",\"count\":5467},{\"id\":\"1997\",\"title\":\"1997\",\"count\":7061},{\"id\":\"1996\",\"title\":\"1996\",\"count\":4187},{\"id\":\"1995\",\"title\":\"1995\",\"count\":3646},{\"id\":\"1994\",\"title\":\"1994\",\"count\":3088},{\"id\":\"1993\",\"title\":\"1993\",\"count\":3156},{\"id\":\"1992\",\"title\":\"1992\",\"count\":2686},{\"id\":\"1991\",\"title\":\"1991\",\"count\":2515},{\"id\":\"1990\",\"title\":\"1990\",\"count\":2030},{\"id\":\"1989\",\"title\":\"1989\",\"count\":1684},{\"id\":\"1988\",\"title\":\"1988\",\"count\":1621},{\"id\":\"1987\",\"title\":\"1987\",\"count\":1805},{\"id\":\"1986\",\"title\":\"1986\",\"count\":1892},{\"id\":\"1985\",\"title\":\"1985\",\"count\":1615},{\"id\":\"1984\",\"title\":\"1984\",\"count\":1450},{\"id\":\"1983\",\"title\":\"1983\",\"count\":1570},{\"id\":\"1982\",\"title\":\"1982\",\"count\":1376},{\"id\":\"1981\",\"title\":\"1981\",\"count\":1176},{\"id\":\"1980\",\"title\":\"1980\",\"count\":4626},{\"id\":\"1979\",\"title\":\"1979\",\"count\":1046},{\"id\":\"1978\",\"title\":\"1978\",\"count\":990},{\"id\":\"1977\",\"title\":\"1977\",\"count\":923},{\"id\":\"1976\",\"title\":\"1976\",\"count\":874},{\"id\":\"1975\",\"title\":\"1975\",\"count\":819},{\"id\":\"1974\",\"title\":\"1974\",\"count\":846},{\"id\":\"1973\",\"title\":\"1973\",\"count\":746},{\"id\":\"1972\",\"title\":\"1972\",\"count\":703},{\"id\":\"1971\",\"title\":\"1971\",\"count\":689},{\"id\":\"1970\",\"title\":\"1970\",\"count\":572},{\"id\":\"1969\",\"title\":\"1969\",\"count\":508},{\"id\":\"1968\",\"title\":\"1968\",\"count\":500},{\"id\":\"1967\",\"title\":\"1967\",\"count\":724},{\"id\":\"1966\",\"title\":\"1966\",\"count\":538},{\"id\":\"1965\",\"title\":\"1965\",\"count\":548},{\"id\":\"1964\",\"title\":\"1964\",\"count\":493},{\"id\":\"1963\",\"title\":\"1963\",\"count\":427},{\"id\":\"1962\",\"title\":\"1962\",\"count\":454},{\"id\":\"1961\",\"title\":\"1961\",\"count\":374},{\"id\":\"1960\",\"title\":\"1960\",\"count\":345},{\"id\":\"1959\",\"title\":\"1959\",\"count\":316},{\"id\":\"1958\",\"title\":\"1958\",\"count\":337},{\"id\":\"1957\",\"title\":\"1957\",\"count\":355},{\"id\":\"1956\",\"title\":\"1956\",\"count\":274},{\"id\":\"1955\",\"title\":\"1955\",\"count\":251},{\"id\":\"1954\",\"title\":\"1954\",\"count\":407},{\"id\":\"1953\",\"title\":\"1953\",\"count\":205},{\"id\":\"1952\",\"title\":\"1952\",\"count\":189},{\"id\":\"1951\",\"title\":\"1951\",\"count\":256},{\"id\":\"1950\",\"title\":\"1950\",\"count\":205},{\"id\":\"1949\",\"title\":\"1949\",\"count\":132},{\"id\":\"1948\",\"title\":\"1948\",\"count\":185},{\"id\":\"1947\",\"title\":\"1947\",\"count\":112},{\"id\":\"1946\",\"title\":\"1946\",\"count\":183},{\"id\":\"1945\",\"title\":\"1945\",\"count\":73},{\"id\":\"1944\",\"title\":\"1944\",\"count\":134},{\"id\":\"1943\",\"title\":\"1943\",\"count\":87},{\"id\":\"1942\",\"title\":\"1942\",\"count\":115},{\"id\":\"1941\",\"title\":\"1941\",\"count\":78},{\"id\":\"1940\",\"title\":\"1940\",\"count\":149},{\"id\":\"1939\",\"title\":\"1939\",\"count\":64},{\"id\":\"1938\",\"title\":\"1938\",\"count\":128},{\"id\":\"1937\",\"title\":\"1937\",\"count\":74},{\"id\":\"1936\",\"title\":\"1936\",\"count\":114},{\"id\":\"1935\",\"title\":\"1935\",\"count\":63},{\"id\":\"1934\",\"title\":\"1934\",\"count\":132},{\"id\":\"1933\",\"title\":\"1933\",\"count\":297},{\"id\":\"1932\",\"title\":\"1932\",\"count\":190},{\"id\":\"1931\",\"title\":\"1931\",\"count\":163},{\"id\":\"1930\",\"title\":\"1930\",\"count\":160},{\"id\":\"1929\",\"title\":\"1929\",\"count\":135},{\"id\":\"1928\",\"title\":\"1928\",\"count\":92},{\"id\":\"1927\",\"title\":\"1927\",\"count\":54},{\"id\":\"1926\",\"title\":\"1926\",\"count\":62},{\"id\":\"1925\",\"title\":\"1925\",\"count\":51},{\"id\":\"1924\",\"title\":\"1924\",\"count\":50},{\"id\":\"1923\",\"title\":\"1923\",\"count\":41},{\"id\":\"1922\",\"title\":\"1922\",\"count\":42},{\"id\":\"1921\",\"title\":\"1921\",\"count\":38},{\"id\":\"1920\",\"title\":\"1920\",\"count\":178},{\"id\":\"1919\",\"title\":\"1919\",\"count\":51},{\"id\":\"1918\",\"title\":\"1918\",\"count\":39},{\"id\":\"1917\",\"title\":\"1917\",\"count\":44},{\"id\":\"1916\",\"title\":\"1916\",\"count\":51},{\"id\":\"1915\",\"title\":\"1915\",\"count\":34},{\"id\":\"1914\",\"title\":\"1914\",\"count\":32},{\"id\":\"1913\",\"title\":\"1913\",\"count\":57},{\"id\":\"1912\",\"title\":\"1912\",\"count\":67},{\"id\":\"1911\",\"title\":\"1911\",\"count\":56},{\"id\":\"1910\",\"title\":\"1910\",\"count\":47},{\"id\":\"1909\",\"title\":\"1909\",\"count\":61},{\"id\":\"1908\",\"title\":\"1908\",\"count\":63},{\"id\":\"1907\",\"title\":\"1907\",\"count\":63},{\"id\":\"1906\",\"title\":\"1906\",\"count\":75},{\"id\":\"1905\",\"title\":\"1905\",\"count\":39},{\"id\":\"1904\",\"title\":\"1904\",\"count\":65},{\"id\":\"1903\",\"title\":\"1903\",\"count\":73},{\"id\":\"1902\",\"title\":\"1902\",\"count\":61},{\"id\":\"1901\",\"title\":\"1901\",\"count\":44},{\"id\":\"1900\",\"title\":\"1900\",\"count\":31},{\"id\":\"1899\",\"title\":\"1899\",\"count\":73},{\"id\":\"1898\",\"title\":\"1898\",\"count\":38},{\"id\":\"1897\",\"title\":\"1897\",\"count\":27},{\"id\":\"1896\",\"title\":\"1896\",\"count\":45},{\"id\":\"1895\",\"title\":\"1895\",\"count\":140},{\"id\":\"1894\",\"title\":\"1894\",\"count\":106},{\"id\":\"1893\",\"title\":\"1893\",\"count\":41},{\"id\":\"1892\",\"title\":\"1892\",\"count\":50},{\"id\":\"1891\",\"title\":\"1891\",\"count\":46},{\"id\":\"1890\",\"title\":\"1890\",\"count\":53},{\"id\":\"1889\",\"title\":\"1889\",\"count\":44},{\"id\":\"1888\",\"title\":\"1888\",\"count\":34},{\"id\":\"1887\",\"title\":\"1887\",\"count\":25},{\"id\":\"1886\",\"title\":\"1886\",\"count\":34},{\"id\":\"1885\",\"title\":\"1885\",\"count\":48},{\"id\":\"1884\",\"title\":\"1884\",\"count\":35},{\"id\":\"1883\",\"title\":\"1883\",\"count\":42},{\"id\":\"1882\",\"title\":\"1882\",\"count\":35},{\"id\":\"1881\",\"title\":\"1881\",\"count\":36},{\"id\":\"1880\",\"title\":\"1880\",\"count\":35},{\"id\":\"1879\",\"title\":\"1879\",\"count\":10},{\"id\":\"1878\",\"title\":\"1878\",\"count\":21},{\"id\":\"1877\",\"title\":\"1877\",\"count\":30},{\"id\":\"1876\",\"title\":\"1876\",\"count\":23},{\"id\":\"1875\",\"title\":\"1875\",\"count\":29},{\"id\":\"1874\",\"title\":\"1874\",\"count\":28},{\"id\":\"1873\",\"title\":\"1873\",\"count\":31},{\"id\":\"1872\",\"title\":\"1872\",\"count\":21},{\"id\":\"1871\",\"title\":\"1871\",\"count\":31},{\"id\":\"1870\",\"title\":\"1870\",\"count\":20},{\"id\":\"1869\",\"title\":\"1869\",\"count\":11},{\"id\":\"1868\",\"title\":\"1868\",\"count\":20},{\"id\":\"1867\",\"title\":\"1867\",\"count\":19},{\"id\":\"1866\",\"title\":\"1866\",\"count\":17},{\"id\":\"1865\",\"title\":\"1865\",\"count\":15},{\"id\":\"1864\",\"title\":\"1864\",\"count\":16},{\"id\":\"1863\",\"title\":\"1863\",\"count\":22},{\"id\":\"1862\",\"title\":\"1862\",\"count\":17},{\"id\":\"1861\",\"title\":\"1861\",\"count\":17},{\"id\":\"1860\",\"title\":\"1860\",\"count\":18},{\"id\":\"1859\",\"title\":\"1859\",\"count\":4},{\"id\":\"1858\",\"title\":\"1858\",\"count\":16},{\"id\":\"1857\",\"title\":\"1857\",\"count\":16},{\"id\":\"1856\",\"title\":\"1856\",\"count\":9},{\"id\":\"1855\",\"title\":\"1855\",\"count\":25},{\"id\":\"1854\",\"title\":\"1854\",\"count\":10},{\"id\":\"1853\",\"title\":\"1853\",\"count\":8},{\"id\":\"1852\",\"title\":\"1852\",\"count\":10},{\"id\":\"1851\",\"title\":\"1851\",\"count\":9},{\"id\":\"1850\",\"title\":\"1850\",\"count\":12},{\"id\":\"1849\",\"title\":\"1849\",\"count\":10},{\"id\":\"1848\",\"title\":\"1848\",\"count\":10},{\"id\":\"1847\",\"title\":\"1847\",\"count\":8},{\"id\":\"1846\",\"title\":\"1846\",\"count\":19},{\"id\":\"1845\",\"title\":\"1845\",\"count\":14},{\"id\":\"1844\",\"title\":\"1844\",\"count\":24},{\"id\":\"1843\",\"title\":\"1843\",\"count\":10},{\"id\":\"1842\",\"title\":\"1842\",\"count\":23},{\"id\":\"1841\",\"title\":\"1841\",\"count\":10},{\"id\":\"1840\",\"title\":\"1840\",\"count\":22},{\"id\":\"1839\",\"title\":\"1839\",\"count\":34},{\"id\":\"1838\",\"title\":\"1838\",\"count\":9},{\"id\":\"1837\",\"title\":\"1837\",\"count\":10},{\"id\":\"1836\",\"title\":\"1836\",\"count\":12},{\"id\":\"1835\",\"title\":\"1835\",\"count\":9},{\"id\":\"1834\",\"title\":\"1834\",\"count\":7},{\"id\":\"1833\",\"title\":\"1833\",\"count\":4},{\"id\":\"1832\",\"title\":\"1832\",\"count\":15},{\"id\":\"1831\",\"title\":\"1831\",\"count\":6},{\"id\":\"1830\",\"title\":\"1830\",\"count\":6},{\"id\":\"1829\",\"title\":\"1829\",\"count\":10},{\"id\":\"1828\",\"title\":\"1828\",\"count\":13},{\"id\":\"1827\",\"title\":\"1827\",\"count\":7},{\"id\":\"1826\",\"title\":\"1826\",\"count\":6},{\"id\":\"1825\",\"title\":\"1825\",\"count\":10},{\"id\":\"1824\",\"title\":\"1824\",\"count\":7},{\"id\":\"1823\",\"title\":\"1823\",\"count\":5},{\"id\":\"1822\",\"title\":\"1822\",\"count\":7},{\"id\":\"1821\",\"title\":\"1821\",\"count\":3},{\"id\":\"1820\",\"title\":\"1820\",\"count\":11},{\"id\":\"1819\",\"title\":\"1819\",\"count\":9},{\"id\":\"1818\",\"title\":\"1818\",\"count\":14},{\"id\":\"1817\",\"title\":\"1817\",\"count\":9},{\"id\":\"1816\",\"title\":\"1816\",\"count\":11},{\"id\":\"1815\",\"title\":\"1815\",\"count\":2},{\"id\":\"1814\",\"title\":\"1814\",\"count\":11},{\"id\":\"1813\",\"title\":\"1813\",\"count\":6},{\"id\":\"1812\",\"title\":\"1812\",\"count\":8},{\"id\":\"1811\",\"title\":\"1811\",\"count\":6},{\"id\":\"1810\",\"title\":\"1810\",\"count\":4},{\"id\":\"1809\",\"title\":\"1809\",\"count\":3},{\"id\":\"1808\",\"title\":\"1808\",\"count\":8},{\"id\":\"1807\",\"title\":\"1807\",\"count\":2},{\"id\":\"1806\",\"title\":\"1806\",\"count\":5},{\"id\":\"1805\",\"title\":\"1805\",\"count\":5},{\"id\":\"1804\",\"title\":\"1804\",\"count\":7},{\"id\":\"1803\",\"title\":\"1803\",\"count\":4},{\"id\":\"1802\",\"title\":\"1802\",\"count\":5},{\"id\":\"1801\",\"title\":\"1801\",\"count\":3},{\"id\":\"1800\",\"title\":\"1800\",\"count\":53},{\"id\":\"1799\",\"title\":\"1799\",\"count\":4},{\"id\":\"1798\",\"title\":\"1798\",\"count\":5},{\"id\":\"1797\",\"title\":\"1797\",\"count\":3},{\"id\":\"1796\",\"title\":\"1796\",\"count\":2},{\"id\":\"1795\",\"title\":\"1795\",\"count\":1},{\"id\":\"1793\",\"title\":\"1793\",\"count\":2},{\"id\":\"1791\",\"title\":\"1791\",\"count\":3},{\"id\":\"1790\",\"title\":\"1790\",\"count\":7},{\"id\":\"1789\",\"title\":\"1789\",\"count\":8},{\"id\":\"1788\",\"title\":\"1788\",\"count\":3},{\"id\":\"1787\",\"title\":\"1787\",\"count\":10},{\"id\":\"1786\",\"title\":\"1786\",\"count\":3},{\"id\":\"1785\",\"title\":\"1785\",\"count\":6},{\"id\":\"1784\",\"title\":\"1784\",\"count\":5},{\"id\":\"1783\",\"title\":\"1783\",\"count\":1},{\"id\":\"1782\",\"title\":\"1782\",\"count\":8},{\"id\":\"1781\",\"title\":\"1781\",\"count\":3},{\"id\":\"1780\",\"title\":\"1780\",\"count\":9},{\"id\":\"1779\",\"title\":\"1779\",\"count\":2},{\"id\":\"1778\",\"title\":\"1778\",\"count\":6},{\"id\":\"1777\",\"title\":\"1777\",\"count\":3},{\"id\":\"1776\",\"title\":\"1776\",\"count\":5},{\"id\":\"1775\",\"title\":\"1775\",\"count\":5},{\"id\":\"1774\",\"title\":\"1774\",\"count\":5},{\"id\":\"1773\",\"title\":\"1773\",\"count\":3},{\"id\":\"1772\",\"title\":\"1772\",\"count\":6},{\"id\":\"1771\",\"title\":\"1771\",\"count\":1},{\"id\":\"1770\",\"title\":\"1770\",\"count\":4},{\"id\":\"1769\",\"title\":\"1769\",\"count\":2},{\"id\":\"1768\",\"title\":\"1768\",\"count\":3},{\"id\":\"1767\",\"title\":\"1767\",\"count\":2},{\"id\":\"1766\",\"title\":\"1766\",\"count\":4},{\"id\":\"1765\",\"title\":\"1765\",\"count\":5},{\"id\":\"1764\",\"title\":\"1764\",\"count\":2},{\"id\":\"1763\",\"title\":\"1763\",\"count\":5},{\"id\":\"1761\",\"title\":\"1761\",\"count\":2},{\"id\":\"1760\",\"title\":\"1760\",\"count\":1},{\"id\":\"1759\",\"title\":\"1759\",\"count\":2},{\"id\":\"1758\",\"title\":\"1758\",\"count\":2},{\"id\":\"1757\",\"title\":\"1757\",\"count\":6},{\"id\":\"1756\",\"title\":\"1756\",\"count\":4},{\"id\":\"1755\",\"title\":\"1755\",\"count\":4},{\"id\":\"1754\",\"title\":\"1754\",\"count\":3},{\"id\":\"1753\",\"title\":\"1753\",\"count\":5},{\"id\":\"1752\",\"title\":\"1752\",\"count\":2},{\"id\":\"1751\",\"title\":\"1751\",\"count\":1},{\"id\":\"1750\",\"title\":\"1750\",\"count\":5},{\"id\":\"1749\",\"title\":\"1749\",\"count\":3},{\"id\":\"1748\",\"title\":\"1748\",\"count\":2},{\"id\":\"1747\",\"title\":\"1747\",\"count\":2},{\"id\":\"1746\",\"title\":\"1746\",\"count\":5},{\"id\":\"1745\",\"title\":\"1745\",\"count\":3},{\"id\":\"1744\",\"title\":\"1744\",\"count\":4},{\"id\":\"1743\",\"title\":\"1743\",\"count\":2},{\"id\":\"1742\",\"title\":\"1742\",\"count\":5},{\"id\":\"1741\",\"title\":\"1741\",\"count\":1},{\"id\":\"1740\",\"title\":\"1740\",\"count\":3},{\"id\":\"1739\",\"title\":\"1739\",\"count\":9},{\"id\":\"1738\",\"title\":\"1738\",\"count\":2},{\"id\":\"1737\",\"title\":\"1737\",\"count\":2},{\"id\":\"1736\",\"title\":\"1736\",\"count\":5},{\"id\":\"1735\",\"title\":\"1735\",\"count\":1},{\"id\":\"1734\",\"title\":\"1734\",\"count\":2},{\"id\":\"1732\",\"title\":\"1732\",\"count\":1},{\"id\":\"1731\",\"title\":\"1731\",\"count\":2},{\"id\":\"1730\",\"title\":\"1730\",\"count\":1},{\"id\":\"1725\",\"title\":\"1725\",\"count\":1},{\"id\":\"1721\",\"title\":\"1721\",\"count\":4},{\"id\":\"1719\",\"title\":\"1719\",\"count\":1},{\"id\":\"1716\",\"title\":\"1716\",\"count\":2},{\"id\":\"1715\",\"title\":\"1715\",\"count\":1},{\"id\":\"1713\",\"title\":\"1713\",\"count\":1},{\"id\":\"1712\",\"title\":\"1712\",\"count\":1},{\"id\":\"1711\",\"title\":\"1711\",\"count\":1},{\"id\":\"1708\",\"title\":\"1708\",\"count\":4},{\"id\":\"1707\",\"title\":\"1707\",\"count\":2},{\"id\":\"1703\",\"title\":\"1703\",\"count\":1},{\"id\":\"1700\",\"title\":\"1700\",\"count\":4},{\"id\":\"1699\",\"title\":\"1699\",\"count\":3},{\"id\":\"1695\",\"title\":\"1695\",\"count\":3},{\"id\":\"1694\",\"title\":\"1694\",\"count\":1},{\"id\":\"1692\",\"title\":\"1692\",\"count\":2},{\"id\":\"1690\",\"title\":\"1690\",\"count\":2},{\"id\":\"1687\",\"title\":\"1687\",\"count\":1},{\"id\":\"1685\",\"title\":\"1685\",\"count\":7},{\"id\":\"1683\",\"title\":\"1683\",\"count\":4},{\"id\":\"1682\",\"title\":\"1682\",\"count\":1},{\"id\":\"1681\",\"title\":\"1681\",\"count\":2},{\"id\":\"1680\",\"title\":\"1680\",\"count\":1},{\"id\":\"1678\",\"title\":\"1678\",\"count\":1},{\"id\":\"1676\",\"title\":\"1676\",\"count\":1},{\"id\":\"1675\",\"title\":\"1675\",\"count\":1},{\"id\":\"1674\",\"title\":\"1674\",\"count\":1},{\"id\":\"1673\",\"title\":\"1673\",\"count\":1},{\"id\":\"1671\",\"title\":\"1671\",\"count\":1},{\"id\":\"1670\",\"title\":\"1670\",\"count\":1},{\"id\":\"1668\",\"title\":\"1668\",\"count\":3},{\"id\":\"1667\",\"title\":\"1667\",\"count\":1},{\"id\":\"1666\",\"title\":\"1666\",\"count\":1},{\"id\":\"1665\",\"title\":\"1665\",\"count\":1},{\"id\":\"1664\",\"title\":\"1664\",\"count\":1},{\"id\":\"1663\",\"title\":\"1663\",\"count\":2},{\"id\":\"1662\",\"title\":\"1662\",\"count\":2},{\"id\":\"1661\",\"title\":\"1661\",\"count\":3},{\"id\":\"1659\",\"title\":\"1659\",\"count\":1},{\"id\":\"1656\",\"title\":\"1656\",\"count\":3},{\"id\":\"1655\",\"title\":\"1655\",\"count\":2},{\"id\":\"1650\",\"title\":\"1650\",\"count\":1},{\"id\":\"1648\",\"title\":\"1648\",\"count\":1},{\"id\":\"1647\",\"title\":\"1647\",\"count\":1},{\"id\":\"1641\",\"title\":\"1641\",\"count\":1},{\"id\":\"1635\",\"title\":\"1635\",\"count\":1},{\"id\":\"1631\",\"title\":\"1631\",\"count\":1},{\"id\":\"1627\",\"title\":\"1627\",\"count\":1},{\"id\":\"1625\",\"title\":\"1625\",\"count\":1},{\"id\":\"1621\",\"title\":\"1621\",\"count\":1},{\"id\":\"1620\",\"title\":\"1620\",\"count\":2},{\"id\":\"1619\",\"title\":\"1619\",\"count\":1},{\"id\":\"1618\",\"title\":\"1618\",\"count\":1},{\"id\":\"1616\",\"title\":\"1616\",\"count\":3},{\"id\":\"1615\",\"title\":\"1615\",\"count\":2},{\"id\":\"1614\",\"title\":\"1614\",\"count\":2},{\"id\":\"1613\",\"title\":\"1613\",\"count\":2},{\"id\":\"1612\",\"title\":\"1612\",\"count\":2},{\"id\":\"1611\",\"title\":\"1611\",\"count\":3},{\"id\":\"1610\",\"title\":\"1610\",\"count\":2},{\"id\":\"1609\",\"title\":\"1609\",\"count\":1},{\"id\":\"1608\",\"title\":\"1608\",\"count\":1},{\"id\":\"1606\",\"title\":\"1606\",\"count\":3},{\"id\":\"1605\",\"title\":\"1605\",\"count\":2},{\"id\":\"1604\",\"title\":\"1604\",\"count\":2},{\"id\":\"1603\",\"title\":\"1603\",\"count\":1},{\"id\":\"1602\",\"title\":\"1602\",\"count\":1},{\"id\":\"1599\",\"title\":\"1599\",\"count\":1},{\"id\":\"1598\",\"title\":\"1598\",\"count\":2},{\"id\":\"1597\",\"title\":\"1597\",\"count\":1},{\"id\":\"1596\",\"title\":\"1596\",\"count\":1},{\"id\":\"1595\",\"title\":\"1595\",\"count\":2},{\"id\":\"1591\",\"title\":\"1591\",\"count\":1},{\"id\":\"1589\",\"title\":\"1589\",\"count\":1},{\"id\":\"1588\",\"title\":\"1588\",\"count\":3},{\"id\":\"1587\",\"title\":\"1587\",\"count\":2},{\"id\":\"1582\",\"title\":\"1582\",\"count\":1},{\"id\":\"1581\",\"title\":\"1581\",\"count\":2},{\"id\":\"1580\",\"title\":\"1580\",\"count\":1},{\"id\":\"1573\",\"title\":\"1573\",\"count\":1},{\"id\":\"1572\",\"title\":\"1572\",\"count\":1},{\"id\":\"1570\",\"title\":\"1570\",\"count\":1},{\"id\":\"1567\",\"title\":\"1567\",\"count\":2},{\"id\":\"1565\",\"title\":\"1565\",\"count\":2},{\"id\":\"1564\",\"title\":\"1564\",\"count\":2},{\"id\":\"1563\",\"title\":\"1563\",\"count\":1},{\"id\":\"1559\",\"title\":\"1559\",\"count\":2},{\"id\":\"1556\",\"title\":\"1556\",\"count\":1},{\"id\":\"1555\",\"title\":\"1555\",\"count\":1},{\"id\":\"1550\",\"title\":\"1550\",\"count\":2},{\"id\":\"1547\",\"title\":\"1547\",\"count\":3},{\"id\":\"1546\",\"title\":\"1546\",\"count\":1},{\"id\":\"1545\",\"title\":\"1545\",\"count\":2},{\"id\":\"1544\",\"title\":\"1544\",\"count\":2},{\"id\":\"1543\",\"title\":\"1543\",\"count\":2},{\"id\":\"1542\",\"title\":\"1542\",\"count\":3},{\"id\":\"1540\",\"title\":\"1540\",\"count\":2},{\"id\":\"1539\",\"title\":\"1539\",\"count\":2},{\"id\":\"1538\",\"title\":\"1538\",\"count\":1},{\"id\":\"1537\",\"title\":\"1537\",\"count\":1},{\"id\":\"1536\",\"title\":\"1536\",\"count\":2},{\"id\":\"1535\",\"title\":\"1535\",\"count\":5},{\"id\":\"1534\",\"title\":\"1534\",\"count\":1},{\"id\":\"1533\",\"title\":\"1533\",\"count\":3},{\"id\":\"1532\",\"title\":\"1532\",\"count\":1},{\"id\":\"1531\",\"title\":\"1531\",\"count\":1},{\"id\":\"1522\",\"title\":\"1522\",\"count\":2},{\"id\":\"1521\",\"title\":\"1521\",\"count\":2},{\"id\":\"1520\",\"title\":\"1520\",\"count\":1},{\"id\":\"1519\",\"title\":\"1519\",\"count\":1},{\"id\":\"1517\",\"title\":\"1517\",\"count\":2},{\"id\":\"1515\",\"title\":\"1515\",\"count\":2},{\"id\":\"1514\",\"title\":\"1514\",\"count\":1},{\"id\":\"1513\",\"title\":\"1513\",\"count\":2},{\"id\":\"1510\",\"title\":\"1510\",\"count\":1},{\"id\":\"1508\",\"title\":\"1508\",\"count\":1},{\"id\":\"1505\",\"title\":\"1505\",\"count\":1},{\"id\":\"1503\",\"title\":\"1503\",\"count\":1},{\"id\":\"1502\",\"title\":\"1502\",\"count\":1},{\"id\":\"1500\",\"title\":\"1500\",\"count\":11},{\"id\":\"1499\",\"title\":\"1499\",\"count\":11},{\"id\":\"1498\",\"title\":\"1498\",\"count\":7},{\"id\":\"1497\",\"title\":\"1497\",\"count\":11},{\"id\":\"1496\",\"title\":\"1496\",\"count\":10},{\"id\":\"1495\",\"title\":\"1495\",\"count\":4},{\"id\":\"1494\",\"title\":\"1494\",\"count\":9},{\"id\":\"1493\",\"title\":\"1493\",\"count\":10},{\"id\":\"1492\",\"title\":\"1492\",\"count\":3},{\"id\":\"1491\",\"title\":\"1491\",\"count\":8},{\"id\":\"1490\",\"title\":\"1490\",\"count\":11},{\"id\":\"1489\",\"title\":\"1489\",\"count\":3},{\"id\":\"1488\",\"title\":\"1488\",\"count\":7},{\"id\":\"1487\",\"title\":\"1487\",\"count\":5},{\"id\":\"1486\",\"title\":\"1486\",\"count\":7},{\"id\":\"1485\",\"title\":\"1485\",\"count\":10},{\"id\":\"1484\",\"title\":\"1484\",\"count\":8},{\"id\":\"1483\",\"title\":\"1483\",\"count\":4},{\"id\":\"1482\",\"title\":\"1482\",\"count\":1},{\"id\":\"1481\",\"title\":\"1481\",\"count\":7},{\"id\":\"1480\",\"title\":\"1480\",\"count\":3},{\"id\":\"1478\",\"title\":\"1478\",\"count\":4},{\"id\":\"1477\",\"title\":\"1477\",\"count\":1},{\"id\":\"1476\",\"title\":\"1476\",\"count\":2},{\"id\":\"1475\",\"title\":\"1475\",\"count\":3},{\"id\":\"1474\",\"title\":\"1474\",\"count\":2},{\"id\":\"1473\",\"title\":\"1473\",\"count\":3},{\"id\":\"1472\",\"title\":\"1472\",\"count\":2},{\"id\":\"1471\",\"title\":\"1471\",\"count\":2},{\"id\":\"1470\",\"title\":\"1470\",\"count\":1},{\"id\":\"1469\",\"title\":\"1469\",\"count\":1},{\"id\":\"1457\",\"title\":\"1457\",\"count\":1},{\"id\":\"1450\",\"title\":\"1450\",\"count\":1},{\"id\":\"1300\",\"title\":\"1300\",\"count\":1},{\"id\":\"1287\",\"title\":\"1287\",\"count\":1},{\"id\":\"1234\",\"title\":\"1234\",\"count\":2},{\"id\":\"1233\",\"title\":\"1233\",\"count\":1},{\"id\":\"1221\",\"title\":\"1221\",\"count\":1},{\"id\":\"1111\",\"title\":\"1111\",\"count\":1},{\"id\":\"1092\",\"title\":\"1092\",\"count\":2},{\"id\":\"1000\",\"title\":\"1000\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":104443},{\"id\":\"2019\",\"title\":\"2019\",\"count\":189546},{\"id\":\"2018\",\"title\":\"2018\",\"count\":37981},{\"id\":\"2017\",\"title\":\"2017\",\"count\":1653},{\"id\":\"2016\",\"title\":\"2016\",\"count\":127},{\"id\":\"2015\",\"title\":\"2015\",\"count\":71},{\"id\":\"2014\",\"title\":\"2014\",\"count\":774},{\"id\":\"2012\",\"title\":\"2012\",\"count\":12},{\"id\":\"2011\",\"title\":\"2011\",\"count\":29}],\"providers\":[{\"id\":\"crossref\",\"title\":\"Crossref\",\"count\":803873},{\"id\":\"figshare\",\"title\":\"figshare\",\"count\":76105},{\"id\":\"bl\",\"title\":\"The British Library\",\"count\":42802},{\"id\":\"tib\",\"title\":\"German National Library of Science and Technology\",\"count\":30497},{\"id\":\"ethz\",\"title\":\"ETH Zurich\",\"count\":27637},{\"id\":\"uutah\",\"title\":\"University of Utah\",\"count\":17649},{\"id\":\"inist\",\"title\":\"Institut de l'Information Scientifique et Technique\",\"count\":17542},{\"id\":\"rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis\",\"title\":\"GESIS - Leibniz Institute for the Social Sciences\",\"count\":15055},{\"id\":\"demo\",\"title\":\"DataCite Demo Provider\",\"count\":9896}],\"clients\":[{\"id\":\"crossref.citations\",\"title\":\"Crossref Citations\",\"count\":803873},{\"id\":\"figshare.dud\",\"title\":\"figshare DUD datacenter\",\"count\":76105},{\"id\":\"ethz.dodisint\",\"title\":\"DODIS internationale Beziehungen\",\"count\":27560},{\"id\":\"bl.mendeley\",\"title\":\"Mendeley Data\",\"count\":24597},{\"id\":\"uutah.marriott\",\"title\":\"J. Willard Marriott Library\",\"count\":17301},{\"id\":\"rstat.rstat\",\"title\":\"RoyaltyStat\",\"count\":16574},{\"id\":\"gesis.test\",\"title\":\"GESIS.TEST\",\"count\":15050},{\"id\":\"inist.cdsp\",\"title\":\"Centre de données socio-politiques\",\"count\":13227},{\"id\":\"tib.aip\",\"title\":\"Leibniz-Institut für Astrophysik Potsdam (AIP) An der Sternwarte 16 14482 Potsdam\",\"count\":10861},{\"id\":\"bl.cam\",\"title\":\"University of Cambridge\",\"count\":8466}],\"affiliations\":[{\"id\":\"ror.org/013m0ej23\",\"title\":\"Perimeter Institute\",\"count\":8357},{\"id\":\"ror.org/02skbsp27\",\"title\":\"Leibniz Institute of Plant Genetics and Crop Plant Research (IPK) Gatersleben\",\"count\":1001},{\"id\":\"ror.org/047426m28\",\"title\":\"University of Illinois\",\"count\":98},{\"id\":\"ror.org/041kmwe10\",\"title\":\"Imperial College London\",\"count\":38},{\"id\":\"ror.org/02495e989\",\"title\":\"Université catholique de Louvain\",\"count\":20},{\"id\":\"ror.org/03sx66s94\",\"title\":\"Tartu Art College\",\"count\":7},{\"id\":\"ror.org/05gq02987\",\"title\":\"Brown University\",\"count\":6},{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":5},{\"id\":\"ror.org/04d836q62\",\"title\":\"TU Wien\",\"count\":3},{\"id\":\"ror.org/00x6h5n95\",\"title\":\"Dryad Digital Repository\",\"count\":2}],\"prefixes\":[{\"id\":\"10.1007\",\"title\":\"10.1007\",\"count\":130739},{\"id\":\"10.0166\",\"title\":\"10.0166\",\"count\":76105},{\"id\":\"10.1080\",\"title\":\"10.1080\",\"count\":58819},{\"id\":\"10.1002\",\"title\":\"10.1002\",\"count\":56678},{\"id\":\"10.1016\",\"title\":\"10.1016\",\"count\":34962},{\"id\":\"10.1142\",\"title\":\"10.1142\",\"count\":34172},{\"id\":\"10.1111\",\"title\":\"10.1111\",\"count\":33031},{\"id\":\"10.18749\",\"title\":\"10.18749\",\"count\":27560},{\"id\":\"10.1177\",\"title\":\"10.1177\",\"count\":23169},{\"id\":\"10.1234\",\"title\":\"10.1234\",\"count\":20651}],\"certificates\":[{\"id\":\"CoreTrustSeal\",\"title\":\"Core Trust Seal\",\"count\":2909},{\"id\":\"DIN 31644\",\"title\":\"Din 31644\",\"count\":736}],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":999834},{\"id\":\"3\",\"title\":\"Schema 3\",\"count\":5336},{\"id\":\"2.2\",\"title\":\"Schema 2.2\",\"count\":3}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":25624},{\"id\":\"404\",\"title\":\"404\",\"count\":3520},{\"id\":\"403\",\"title\":\"403\",\"count\":998},{\"id\":\"401\",\"title\":\"401\",\"count\":291},{\"id\":\"500\",\"title\":\"500\",\"count\":275},{\"id\":\"503\",\"title\":\"503\",\"count\":142},{\"id\":\"400\",\"title\":\"400\",\"count\":46},{\"id\":\"300\",\"title\":\"300\",\"count\":16},{\"id\":\"410\",\"title\":\"410\",\"count\":10},{\"id\":\"502\",\"title\":\"502\",\"count\":3}],\"citations\":[],\"views\":[],\"downloads\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?affiliation=true&affiliation-id=&certificate=&client-id=&created=&include=client&link-check-status=&page%5Bnumber%5D=1&page%5Bsize%5D=25&person-id=&prefix=&provider-id=&query=®istered=&resource-type-id=&schema-version=&size=25&sort=&source=&state=&year=\",\"next\":\"https://api.test.datacite.org/dois?affiliation-id=&affiliation=true&certificate=&client-id=&created=&page%5Bnumber%5D=2&page%5Bsize%5D=25&prefix=&provider-id=&query=®istered=&resource-type-id=\"}}" }, "cookies": [], "headers": [ @@ -142,8 +142,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:30.269Z", - "time": 1582, + "startedDateTime": "2020-05-04T16:42:16.959Z", + "time": 1218, "timings": { "blocked": -1, "connect": -1, @@ -151,11 +151,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1582 + "wait": 1218 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -171,18 +171,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -201,8 +210,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:31.878Z", - "time": 95, + "startedDateTime": "2020-05-04T16:42:18.206Z", + "time": 117, "timings": { "blocked": -1, "connect": -1, @@ -210,11 +219,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 117 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -230,27 +239,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -269,8 +269,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:31.878Z", - "time": 98, + "startedDateTime": "2020-05-04T16:42:18.206Z", + "time": 123, "timings": { "blocked": -1, "connect": -1, @@ -278,7 +278,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 123 } } ], diff --git a/recordings/Acceptance-user-doi_1070164149/visiting-specific-doi_4109340652/recording.har b/recordings/Acceptance-user-doi_1070164149/visiting-specific-doi_4109340652/recording.har index 23e49cdba..2883656be 100644 --- a/recordings/Acceptance-user-doi_1070164149/visiting-specific-doi_4109340652/recording.har +++ b/recordings/Acceptance-user-doi_1070164149/visiting-specific-doi_4109340652/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | doi/visiting specific doi", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -40,11 +40,11 @@ "url": "https://api.test.datacite.org/dois/10.80225%2Fda52-7919?include=client" }, "response": { - "bodySize": 8272, + "bodySize": 8331, "content": { "mimeType": "application/json; charset=utf-8", - "size": 8272, - "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite930\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-04-23T07:40:24.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" + "size": 8331, + "text": "{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"prefix\":\"10.80225\",\"suffix\":\"da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"alternateIdentifiers\":[],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuODAyMjUvREE1Mi03OTE5PC9pZGVudGlmaWVyPgogIDxjcmVhdG9ycz4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5CdXlzLCBNYXR0PC9jcmVhdG9yTmFtZT4KICAgICAgPGdpdmVuTmFtZT5NYXR0PC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkJ1eXM8L2ZhbWlseU5hbWU+CiAgICA8L2NyZWF0b3I+CiAgICA8Y3JlYXRvcj4KICAgICAgPGNyZWF0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+RGFzbGVyLCBSb2JpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+Um9iaW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+RGFzbGVyPC9mYW1pbHlOYW1lPgogICAgICA8bmFtZUlkZW50aWZpZXIgbmFtZUlkZW50aWZpZXJTY2hlbWU9Ik9SQ0lEIiBzY2hlbWVVUkk9Imh0dHBzOi8vb3JjaWQub3JnIj5odHRwczovL29yY2lkLm9yZy8wMDAwLTAwMDItNDY5NS03ODc0PC9uYW1lSWRlbnRpZmllcj4KICAgIDwvY3JlYXRvcj4KICAgIDxjcmVhdG9yPgogICAgICA8Y3JlYXRvck5hbWUgbmFtZVR5cGU9IlBlcnNvbmFsIj5GZW5uZXIsIE1hcnRpbjwvY3JlYXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+TWFydGluPC9naXZlbk5hbWU+CiAgICAgIDxmYW1pbHlOYW1lPkZlbm5lcjwvZmFtaWx5TmFtZT4KICAgICAgPG5hbWVJZGVudGlmaWVyIG5hbWVJZGVudGlmaWVyU2NoZW1lPSJPUkNJRCIgc2NoZW1lVVJJPSJodHRwczovL29yY2lkLm9yZyI+aHR0cHM6Ly9vcmNpZC5vcmcvMDAwMC0wMDAzLTE0MTktMjQwNTwvbmFtZUlkZW50aWZpZXI+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzPgogICAgPHRpdGxlPlBJRHMgZm9yIGluc3RydW1lbnRzOiBhIHdheSBmb3J3YXJkPC90aXRsZT4KICA8L3RpdGxlcz4KICA8cHVibGlzaGVyPkRhdGFDaXRlPC9wdWJsaXNoZXI+CiAgPHB1YmxpY2F0aW9uWWVhcj4yMDIwPC9wdWJsaWNhdGlvblllYXI+CiAgPHJlc291cmNlVHlwZSByZXNvdXJjZVR5cGVHZW5lcmFsPSJJbnRlcmFjdGl2ZVJlc291cmNlIi8+CiAgPHN1YmplY3RzPgogICAgPHN1YmplY3Q+aW5zdHJ1bWVudDwvc3ViamVjdD4KICAgIDxzdWJqZWN0PnJkYTwvc3ViamVjdD4KICAgIDxzdWJqZWN0PmZlYXR1cmVkPC9zdWJqZWN0PgogIDwvc3ViamVjdHM+CiAgPGNvbnRyaWJ1dG9ycz4KICAgIDxjb250cmlidXRvciBjb250cmlidXRvclR5cGU9IkRhdGFDb2xsZWN0b3IiPgogICAgICA8Y29udHJpYnV0b3JOYW1lIG5hbWVUeXBlPSJQZXJzb25hbCI+R2FyemEsIEtyaXN0aWFuPC9jb250cmlidXRvck5hbWU+CiAgICAgIDxnaXZlbk5hbWU+S3Jpc3RpYW48L2dpdmVuTmFtZT4KICAgICAgPGZhbWlseU5hbWU+R2FyemE8L2ZhbWlseU5hbWU+CiAgICAgIDxuYW1lSWRlbnRpZmllciBuYW1lSWRlbnRpZmllclNjaGVtZT0iT1JDSUQiIHNjaGVtZVVSST0iaHR0cHM6Ly9vcmNpZC5vcmciPmh0dHBzOi8vb3JjaWQub3JnLzAwMDAtMDAwMy0zNDg0LTY4NzU8L25hbWVJZGVudGlmaWVyPgogICAgPC9jb250cmlidXRvcj4KICA8L2NvbnRyaWJ1dG9ycz4KICA8ZGF0ZXM+CiAgICA8ZGF0ZSBkYXRlVHlwZT0iSXNzdWVkIj4yMDIwPC9kYXRlPgogIDwvZGF0ZXM+CiAgPHJlbGF0ZWRJZGVudGlmaWVycz4KICAgIDxyZWxhdGVkSWRlbnRpZmllciByZWxhdGVkSWRlbnRpZmllclR5cGU9IkRPSSIgcmVsYXRpb25UeXBlPSJJc1BhcnRPZiIgcmVzb3VyY2VUeXBlR2VuZXJhbD0iSW50ZXJhY3RpdmVSZXNvdXJjZSI+MTAuNTQzOC8wMDAwLTAwc3M8L3JlbGF0ZWRJZGVudGlmaWVyPgogICAgPHJlbGF0ZWRJZGVudGlmaWVyIHJlbGF0ZWRJZGVudGlmaWVyVHlwZT0iRE9JIiByZWxhdGlvblR5cGU9Ikhhc01ldGFkYXRhIj4xMC43OTE0L3NuL3NoPC9yZWxhdGVkSWRlbnRpZmllcj4KICA8L3JlbGF0ZWRJZGVudGlmaWVycz4KICA8dmVyc2lvbj4xLjA8L3ZlcnNpb24+CiAgPHJpZ2h0c0xpc3Q+CiAgICA8cmlnaHRzIHJpZ2h0c1VSST0iaHR0cDovL3NwZHgub3JnL2xpY2Vuc2VzL01JVC5qc29uIj5NSVQgTGljZW5zZTwvcmlnaHRzPgogIDwvcmlnaHRzTGlzdD4KICA8ZGVzY3JpcHRpb25zPgogICAgPGRlc2NyaXB0aW9uIGRlc2NyaXB0aW9uVHlwZT0iQWJzdHJhY3QiPkFzIGEgY29tbXVuaXR5LWRyaXZlbiBvcmdhbml6YXRpb24sIHdlIGNvbnRpbnVlIHRvIGZvY3VzIGFuZCBleHBsb3JlIHVzZSBjYXNlcyB3aXRoIG91ciBtZW1iZXJzLiBUaGUgcGVyc2lzdGVudCBpZGVudGlmaWNhdGlvbiBhbmQgY2l0YXRpb24gb2Ygc2NpZW50aWZpYyBpbnN0cnVtZW50cyBpcyBhIHBhcnRpY3VsYXIgdXNlIGNhc2UgdGhhdCBjb250aW51ZXMgdG8gZ2FpbiBtb21lbnR1bSBhY3Jvc3MgY29tbXVuaXR5IHN0YWtlaG9sZGVycy4uLjwvZGVzY3JpcHRpb24+CiAgPC9kZXNjcmlwdGlvbnM+CiAgPGZ1bmRpbmdSZWZlcmVuY2VzPgogICAgPGZ1bmRpbmdSZWZlcmVuY2U+CiAgICAgIDxmdW5kZXJOYW1lPkFtZXJpY2FuIFJlZCBDcm9zczwvZnVuZGVyTmFtZT4KICAgICAgPGZ1bmRlcklkZW50aWZpZXIgZnVuZGVySWRlbnRpZmllclR5cGU9IkNyb3NzcmVmIEZ1bmRlciBJRCI+aHR0cHM6Ly9kb2kub3JnLzEwLjEzMDM5LzEwMDAwNjc0NDwvZnVuZGVySWRlbnRpZmllcj4KICAgIDwvZnVuZGluZ1JlZmVyZW5jZT4KICA8L2Z1bmRpbmdSZWZlcmVuY2VzPgo8L3Jlc291cmNlPgo=\",\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.80225/da52-7919\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}},\"included\":[{\"id\":\"datacite.test\",\"type\":\"clients\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"year\":2017,\"contactEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite196\",\"language\":[],\"clientType\":\"repository\",\"domains\":\"*\",\"re3data\":null,\"opendoar\":null,\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:42:11.000Z\",\"isActive\":true,\"hasPassword\":true},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}}]}" }, "cookies": [], "headers": [ @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:32.214Z", - "time": 197, + "startedDateTime": "2020-05-04T16:42:18.534Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 197 + "wait": 118 } }, { @@ -99,11 +99,11 @@ "url": "https://api.test.datacite.org/providers/datacite" }, "response": { - "bodySize": 5309, + "bodySize": 5349, "content": { "mimeType": "application/json; charset=utf-8", - "size": 5309, - "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-03-21T20:43:45.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":61,\"consortiumOrganizationCount\":0}}" + "size": 5349, + "text": "{\"data\":{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}},\"meta\":{\"repositoryCount\":62,\"consortiumOrganizationCount\":0}}" }, "cookies": [], "headers": [ @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:32.523Z", - "time": 172, + "startedDateTime": "2020-05-04T16:42:18.781Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 172 + "wait": 111 } }, { @@ -186,8 +186,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:32.523Z", - "time": 200, + "startedDateTime": "2020-05-04T16:42:18.781Z", + "time": 163, "timings": { "blocked": -1, "connect": -1, @@ -195,7 +195,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 200 + "wait": 163 } }, { @@ -222,11 +222,11 @@ "url": "https://api.test.datacite.org/providers/dc" }, "response": { - "bodySize": 1680, + "bodySize": 1713, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1680, - "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-04-23T07:40:12.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":20}}" + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" }, "cookies": [], "headers": [ @@ -245,8 +245,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:32.705Z", - "time": 75, + "startedDateTime": "2020-05-04T16:42:18.900Z", + "time": 82, "timings": { "blocked": -1, "connect": -1, @@ -254,7 +254,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 75 + "wait": 82 } } ], diff --git a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-dois_3257149311/recording.har b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-dois_3257149311/recording.har index 9110d4a1d..09f8bb702 100644 --- a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-dois_3257149311/recording.har +++ b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-dois_3257149311/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | provider/visiting provider TIB dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.753Z", - "time": 84, + "startedDateTime": "2020-05-04T16:42:20.963Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 84 + "wait": 115 } }, { @@ -122,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.847Z", - "time": 106, + "startedDateTime": "2020-05-04T16:42:21.100Z", + "time": 126, "timings": { "blocked": -1, "connect": -1, @@ -131,7 +131,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 106 + "wait": 126 } }, { @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.847Z", - "time": 114, + "startedDateTime": "2020-05-04T16:42:21.100Z", + "time": 134, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 114 + "wait": 134 } } ], diff --git a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-info_2741953062/recording.har b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-info_2741953062/recording.har index 7da0d7160..d5925276e 100644 --- a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-info_2741953062/recording.har +++ b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-info_2741953062/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | provider/visiting provider TIB info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:33.359Z", - "time": 90, + "startedDateTime": "2020-05-04T16:42:19.478Z", + "time": 81, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 90 + "wait": 81 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -122,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:33.467Z", - "time": 183, + "startedDateTime": "2020-05-04T16:42:19.570Z", + "time": 161, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +140,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 183 + "wait": 161 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -151,27 +160,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:33.467Z", - "time": 218, + "startedDateTime": "2020-05-04T16:42:19.570Z", + "time": 164, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 218 + "wait": 164 } } ], diff --git a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-prefixes_238909962/recording.har b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-prefixes_238909962/recording.har index 61f0dc3f2..7bf82ffc6 100644 --- a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-prefixes_238909962/recording.har +++ b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-prefixes_238909962/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | provider/visiting provider TIB prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.312Z", - "time": 80, + "startedDateTime": "2020-05-04T16:42:20.501Z", + "time": 86, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 80 + "wait": 86 } }, { @@ -131,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.400Z", - "time": 129, + "startedDateTime": "2020-05-04T16:42:20.602Z", + "time": 101, "timings": { "blocked": -1, "connect": -1, @@ -140,7 +140,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 101 } }, { @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.400Z", - "time": 150, + "startedDateTime": "2020-05-04T16:42:20.602Z", + "time": 132, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 150 + "wait": 132 } } ], diff --git a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-repositories_3136768718/recording.har b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-repositories_3136768718/recording.har index 2e3f976ae..5dd384896 100644 --- a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-repositories_3136768718/recording.har +++ b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB-repositories_3136768718/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | provider/visiting provider TIB repositories", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:33.984Z", - "time": 86, + "startedDateTime": "2020-05-04T16:42:20.050Z", + "time": 92, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 86 + "wait": 92 } }, { @@ -131,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.083Z", - "time": 98, + "startedDateTime": "2020-05-04T16:42:20.162Z", + "time": 110, "timings": { "blocked": -1, "connect": -1, @@ -140,7 +140,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 110 } }, { @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:34.083Z", - "time": 100, + "startedDateTime": "2020-05-04T16:42:20.162Z", + "time": 115, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 115 } } ], diff --git a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB_4267189074/recording.har b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB_4267189074/recording.har index d62564f5a..bc7048c17 100644 --- a/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB_4267189074/recording.har +++ b/recordings/Acceptance-user-provider_2258569106/visiting-provider-TIB_4267189074/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | provider/visiting provider TIB", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:32.914Z", - "time": 92, + "startedDateTime": "2020-05-04T16:42:19.087Z", + "time": 88, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 92 + "wait": 88 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -122,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:33.016Z", - "time": 138, + "startedDateTime": "2020-05-04T16:42:19.183Z", + "time": 101, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +140,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 138 + "wait": 101 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -151,27 +160,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:33.016Z", - "time": 140, + "startedDateTime": "2020-05-04T16:42:19.183Z", + "time": 103, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 140 + "wait": 103 } } ], diff --git a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-dois_2492809532/recording.har b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-dois_2492809532/recording.har index f783dba48..e64b6a178 100644 --- a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-dois_2492809532/recording.har +++ b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-dois_2492809532/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | repository/visiting repository AWI dois", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.464Z", - "time": 95, + "startedDateTime": "2020-05-04T16:42:22.992Z", + "time": 111, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 95 + "wait": 111 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -92,27 +92,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -131,8 +122,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.570Z", - "time": 121, + "startedDateTime": "2020-05-04T16:42:23.122Z", + "time": 89, "timings": { "blocked": -1, "connect": -1, @@ -140,11 +131,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 121 + "wait": 89 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -160,18 +151,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.570Z", - "time": 125, + "startedDateTime": "2020-05-04T16:42:23.122Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 125 + "wait": 95 } } ], diff --git a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-info_2068777189/recording.har b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-info_2068777189/recording.har index 6e43b0193..5c0cf9628 100644 --- a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-info_2068777189/recording.har +++ b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-info_2068777189/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | repository/visiting repository AWI info", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.619Z", - "time": 112, + "startedDateTime": "2020-05-04T16:42:22.007Z", + "time": 128, "timings": { "blocked": -1, "connect": -1, @@ -72,7 +72,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 128 } }, { @@ -131,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.747Z", - "time": 98, + "startedDateTime": "2020-05-04T16:42:22.162Z", + "time": 116, "timings": { "blocked": -1, "connect": -1, @@ -140,7 +140,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 98 + "wait": 116 } }, { @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.747Z", - "time": 105, + "startedDateTime": "2020-05-04T16:42:22.162Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 105 + "wait": 118 } } ], diff --git a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-prefixes_1718690037/recording.har b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-prefixes_1718690037/recording.har index 4590ee70e..78e2019b5 100644 --- a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-prefixes_1718690037/recording.har +++ b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI-prefixes_1718690037/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | repository/visiting repository AWI prefixes", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.988Z", - "time": 100, + "startedDateTime": "2020-05-04T16:42:22.495Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 100 + "wait": 102 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -122,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.097Z", - "time": 127, + "startedDateTime": "2020-05-04T16:42:22.619Z", + "time": 113, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +140,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 113 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -151,27 +160,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.097Z", - "time": 149, + "startedDateTime": "2020-05-04T16:42:22.619Z", + "time": 120, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 149 + "wait": 120 } } ], diff --git a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI_3266462663/recording.har b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI_3266462663/recording.har index f721e4859..303ef97d0 100644 --- a/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI_3266462663/recording.har +++ b/recordings/Acceptance-user-repository_3645989639/visiting-repository-AWI_3266462663/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | repository/visiting repository AWI", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -63,8 +63,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.113Z", - "time": 182, + "startedDateTime": "2020-05-04T16:42:21.499Z", + "time": 172, "timings": { "blocked": -1, "connect": -1, @@ -72,11 +72,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 172 } }, { - "_id": "68bb570157b7b923848d2b45579d02f2", + "_id": "ff8b13ed968f596ac396c057c663b4fe", "_order": 0, "cache": {}, "request": { @@ -92,18 +92,27 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 698, + "headersSize": 733, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [], - "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" + "queryString": [ + { + "name": "user-id", + "value": "0000-0001-6528-2027" + }, + { + "name": "user_id", + "value": "0000-0001-6528-2027" + } + ], + "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" }, "response": { - "bodySize": 1377, + "bodySize": 164, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1377, - "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" + "size": 164, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" }, "cookies": [], "headers": [ @@ -122,8 +131,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.307Z", - "time": 104, + "startedDateTime": "2020-05-04T16:42:21.682Z", + "time": 89, "timings": { "blocked": -1, "connect": -1, @@ -131,11 +140,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 104 + "wait": 89 } }, { - "_id": "ff8b13ed968f596ac396c057c663b4fe", + "_id": "68bb570157b7b923848d2b45579d02f2", "_order": 0, "cache": {}, "request": { @@ -151,27 +160,18 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 733, + "headersSize": 698, "httpVersion": "HTTP/1.1", "method": "GET", - "queryString": [ - { - "name": "user-id", - "value": "0000-0001-6528-2027" - }, - { - "name": "user_id", - "value": "0000-0001-6528-2027" - } - ], - "url": "https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027" + "queryString": [], + "url": "https://api.test.datacite.org/users/0000-0001-6528-2027" }, "response": { - "bodySize": 164, + "bodySize": 1377, "content": { "mimeType": "application/json; charset=utf-8", - "size": 164, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0001-6528-2027&user_id=0000-0001-6528-2027\"}}" + "size": 1377, + "text": "{\"data\":{\"id\":\"0000-0001-6528-2027\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0001-6528-2027\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":false,\"created\":\"2018-08-20T16:40:54.000Z\",\"updated\":\"2019-08-31T07:28:05.000Z\",\"email\":\"martin.fenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"809773\",\"type\":\"claim\"},{\"id\":\"809774\",\"type\":\"claim\"},{\"id\":\"809775\",\"type\":\"claim\"},{\"id\":\"809776\",\"type\":\"claim\"},{\"id\":\"809777\",\"type\":\"claim\"},{\"id\":\"809778\",\"type\":\"claim\"},{\"id\":\"809779\",\"type\":\"claim\"},{\"id\":\"809780\",\"type\":\"claim\"},{\"id\":\"809781\",\"type\":\"claim\"},{\"id\":\"809782\",\"type\":\"claim\"},{\"id\":\"809783\",\"type\":\"claim\"},{\"id\":\"809784\",\"type\":\"claim\"},{\"id\":\"809785\",\"type\":\"claim\"},{\"id\":\"809786\",\"type\":\"claim\"},{\"id\":\"809787\",\"type\":\"claim\"},{\"id\":\"809788\",\"type\":\"claim\"},{\"id\":\"809789\",\"type\":\"claim\"},{\"id\":\"809790\",\"type\":\"claim\"},{\"id\":\"809791\",\"type\":\"claim\"},{\"id\":\"809792\",\"type\":\"claim\"},{\"id\":\"809793\",\"type\":\"claim\"},{\"id\":\"809794\",\"type\":\"claim\"},{\"id\":\"809795\",\"type\":\"claim\"},{\"id\":\"809796\",\"type\":\"claim\"},{\"id\":\"836622\",\"type\":\"claim\"},{\"id\":\"836623\",\"type\":\"claim\"},{\"id\":\"836630\",\"type\":\"claim\"},{\"id\":\"836632\",\"type\":\"claim\"},{\"id\":\"836634\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[],\"published\":[],\"resourceTypes\":[],\"views\":[],\"downloads\":[],\"citations\":[]}}" }, "cookies": [], "headers": [ @@ -190,8 +190,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:35.307Z", - "time": 127, + "startedDateTime": "2020-05-04T16:42:21.682Z", + "time": 95, "timings": { "blocked": -1, "connect": -1, @@ -199,7 +199,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 127 + "wait": 95 } } ], diff --git a/recordings/Acceptance-user-user_408143808/visiting-specific-user_253064087/recording.har b/recordings/Acceptance-user-user_408143808/visiting-specific-user_253064087/recording.har index c7090d5ee..61cbc8ae0 100644 --- a/recordings/Acceptance-user-user_408143808/visiting-specific-user_253064087/recording.har +++ b/recordings/Acceptance-user-user_408143808/visiting-specific-user_253064087/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | user/visiting specific user", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -35,11 +35,11 @@ "url": "https://api.test.datacite.org/users/0000-0003-1419-2405" }, "response": { - "bodySize": 9414, + "bodySize": 9445, "content": { "mimeType": "application/json; charset=utf-8", - "size": 9414, - "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\",\"email\":\"mfenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"3999\",\"type\":\"claim\"},{\"id\":\"4000\",\"type\":\"claim\"},{\"id\":\"4001\",\"type\":\"claim\"},{\"id\":\"4002\",\"type\":\"claim\"},{\"id\":\"4004\",\"type\":\"claim\"},{\"id\":\"4005\",\"type\":\"claim\"},{\"id\":\"4006\",\"type\":\"claim\"},{\"id\":\"4007\",\"type\":\"claim\"},{\"id\":\"4008\",\"type\":\"claim\"},{\"id\":\"4009\",\"type\":\"claim\"},{\"id\":\"4010\",\"type\":\"claim\"},{\"id\":\"4011\",\"type\":\"claim\"},{\"id\":\"4012\",\"type\":\"claim\"},{\"id\":\"4013\",\"type\":\"claim\"},{\"id\":\"4014\",\"type\":\"claim\"},{\"id\":\"4015\",\"type\":\"claim\"},{\"id\":\"4017\",\"type\":\"claim\"},{\"id\":\"4018\",\"type\":\"claim\"},{\"id\":\"4019\",\"type\":\"claim\"},{\"id\":\"4020\",\"type\":\"claim\"},{\"id\":\"4021\",\"type\":\"claim\"},{\"id\":\"4022\",\"type\":\"claim\"},{\"id\":\"6134\",\"type\":\"claim\"},{\"id\":\"6135\",\"type\":\"claim\"},{\"id\":\"6138\",\"type\":\"claim\"},{\"id\":\"6139\",\"type\":\"claim\"},{\"id\":\"6140\",\"type\":\"claim\"},{\"id\":\"6141\",\"type\":\"claim\"},{\"id\":\"6142\",\"type\":\"claim\"},{\"id\":\"6145\",\"type\":\"claim\"},{\"id\":\"6146\",\"type\":\"claim\"},{\"id\":\"6147\",\"type\":\"claim\"},{\"id\":\"6148\",\"type\":\"claim\"},{\"id\":\"6153\",\"type\":\"claim\"},{\"id\":\"6154\",\"type\":\"claim\"},{\"id\":\"22383\",\"type\":\"claim\"},{\"id\":\"22385\",\"type\":\"claim\"},{\"id\":\"22386\",\"type\":\"claim\"},{\"id\":\"22387\",\"type\":\"claim\"},{\"id\":\"22388\",\"type\":\"claim\"},{\"id\":\"22389\",\"type\":\"claim\"},{\"id\":\"35002\",\"type\":\"claim\"},{\"id\":\"35005\",\"type\":\"claim\"},{\"id\":\"35509\",\"type\":\"claim\"},{\"id\":\"649412\",\"type\":\"claim\"},{\"id\":\"649590\",\"type\":\"claim\"},{\"id\":\"649701\",\"type\":\"claim\"},{\"id\":\"649844\",\"type\":\"claim\"},{\"id\":\"649845\",\"type\":\"claim\"},{\"id\":\"650063\",\"type\":\"claim\"},{\"id\":\"650092\",\"type\":\"claim\"},{\"id\":\"650137\",\"type\":\"claim\"},{\"id\":\"650138\",\"type\":\"claim\"},{\"id\":\"650139\",\"type\":\"claim\"},{\"id\":\"650140\",\"type\":\"claim\"},{\"id\":\"650141\",\"type\":\"claim\"},{\"id\":\"650142\",\"type\":\"claim\"},{\"id\":\"650143\",\"type\":\"claim\"},{\"id\":\"650403\",\"type\":\"claim\"},{\"id\":\"650480\",\"type\":\"claim\"},{\"id\":\"650490\",\"type\":\"claim\"},{\"id\":\"650491\",\"type\":\"claim\"},{\"id\":\"651202\",\"type\":\"claim\"},{\"id\":\"651610\",\"type\":\"claim\"},{\"id\":\"651612\",\"type\":\"claim\"},{\"id\":\"651613\",\"type\":\"claim\"},{\"id\":\"651615\",\"type\":\"claim\"},{\"id\":\"651760\",\"type\":\"claim\"},{\"id\":\"651771\",\"type\":\"claim\"},{\"id\":\"651772\",\"type\":\"claim\"},{\"id\":\"651773\",\"type\":\"claim\"},{\"id\":\"651774\",\"type\":\"claim\"},{\"id\":\"651776\",\"type\":\"claim\"},{\"id\":\"652085\",\"type\":\"claim\"},{\"id\":\"652086\",\"type\":\"claim\"},{\"id\":\"652087\",\"type\":\"claim\"},{\"id\":\"652088\",\"type\":\"claim\"},{\"id\":\"652094\",\"type\":\"claim\"},{\"id\":\"652198\",\"type\":\"claim\"},{\"id\":\"652791\",\"type\":\"claim\"},{\"id\":\"652792\",\"type\":\"claim\"},{\"id\":\"652793\",\"type\":\"claim\"},{\"id\":\"652794\",\"type\":\"claim\"},{\"id\":\"652869\",\"type\":\"claim\"},{\"id\":\"653788\",\"type\":\"claim\"},{\"id\":\"653789\",\"type\":\"claim\"},{\"id\":\"653790\",\"type\":\"claim\"},{\"id\":\"653791\",\"type\":\"claim\"},{\"id\":\"653792\",\"type\":\"claim\"},{\"id\":\"656699\",\"type\":\"claim\"},{\"id\":\"656704\",\"type\":\"claim\"},{\"id\":\"656706\",\"type\":\"claim\"},{\"id\":\"656708\",\"type\":\"claim\"},{\"id\":\"656709\",\"type\":\"claim\"},{\"id\":\"656711\",\"type\":\"claim\"},{\"id\":\"656712\",\"type\":\"claim\"},{\"id\":\"656714\",\"type\":\"claim\"},{\"id\":\"656717\",\"type\":\"claim\"},{\"id\":\"656719\",\"type\":\"claim\"},{\"id\":\"656722\",\"type\":\"claim\"},{\"id\":\"656726\",\"type\":\"claim\"},{\"id\":\"656728\",\"type\":\"claim\"},{\"id\":\"656729\",\"type\":\"claim\"},{\"id\":\"656732\",\"type\":\"claim\"},{\"id\":\"656733\",\"type\":\"claim\"},{\"id\":\"656734\",\"type\":\"claim\"},{\"id\":\"656737\",\"type\":\"claim\"},{\"id\":\"658441\",\"type\":\"claim\"},{\"id\":\"658443\",\"type\":\"claim\"},{\"id\":\"658444\",\"type\":\"claim\"},{\"id\":\"658445\",\"type\":\"claim\"},{\"id\":\"658446\",\"type\":\"claim\"},{\"id\":\"658447\",\"type\":\"claim\"},{\"id\":\"658448\",\"type\":\"claim\"},{\"id\":\"672572\",\"type\":\"claim\"},{\"id\":\"672574\",\"type\":\"claim\"},{\"id\":\"672576\",\"type\":\"claim\"},{\"id\":\"672578\",\"type\":\"claim\"},{\"id\":\"672588\",\"type\":\"claim\"},{\"id\":\"783425\",\"type\":\"claim\"},{\"id\":\"787460\",\"type\":\"claim\"},{\"id\":\"790849\",\"type\":\"claim\"},{\"id\":\"790850\",\"type\":\"claim\"},{\"id\":\"790851\",\"type\":\"claim\"},{\"id\":\"790852\",\"type\":\"claim\"},{\"id\":\"790853\",\"type\":\"claim\"},{\"id\":\"790854\",\"type\":\"claim\"},{\"id\":\"790855\",\"type\":\"claim\"},{\"id\":\"790856\",\"type\":\"claim\"},{\"id\":\"791059\",\"type\":\"claim\"},{\"id\":\"791060\",\"type\":\"claim\"},{\"id\":\"791061\",\"type\":\"claim\"},{\"id\":\"791170\",\"type\":\"claim\"},{\"id\":\"794517\",\"type\":\"claim\"},{\"id\":\"794518\",\"type\":\"claim\"},{\"id\":\"794519\",\"type\":\"claim\"},{\"id\":\"794520\",\"type\":\"claim\"},{\"id\":\"794521\",\"type\":\"claim\"},{\"id\":\"794522\",\"type\":\"claim\"},{\"id\":\"794896\",\"type\":\"claim\"},{\"id\":\"804681\",\"type\":\"claim\"},{\"id\":\"804686\",\"type\":\"claim\"},{\"id\":\"804687\",\"type\":\"claim\"},{\"id\":\"804688\",\"type\":\"claim\"},{\"id\":\"804689\",\"type\":\"claim\"},{\"id\":\"804690\",\"type\":\"claim\"},{\"id\":\"804691\",\"type\":\"claim\"},{\"id\":\"804692\",\"type\":\"claim\"},{\"id\":\"804693\",\"type\":\"claim\"},{\"id\":\"809797\",\"type\":\"claim\"},{\"id\":\"809807\",\"type\":\"claim\"},{\"id\":\"809864\",\"type\":\"claim\"},{\"id\":\"809893\",\"type\":\"claim\"},{\"id\":\"809915\",\"type\":\"claim\"},{\"id\":\"809916\",\"type\":\"claim\"},{\"id\":\"828332\",\"type\":\"claim\"},{\"id\":\"835855\",\"type\":\"claim\"},{\"id\":\"836528\",\"type\":\"claim\"},{\"id\":\"836557\",\"type\":\"claim\"},{\"id\":\"836558\",\"type\":\"claim\"},{\"id\":\"836559\",\"type\":\"claim\"},{\"id\":\"836565\",\"type\":\"claim\"},{\"id\":\"836566\",\"type\":\"claim\"},{\"id\":\"836567\",\"type\":\"claim\"},{\"id\":\"836568\",\"type\":\"claim\"},{\"id\":\"836569\",\"type\":\"claim\"},{\"id\":\"836570\",\"type\":\"claim\"},{\"id\":\"836571\",\"type\":\"claim\"},{\"id\":\"836572\",\"type\":\"claim\"},{\"id\":\"836573\",\"type\":\"claim\"},{\"id\":\"836574\",\"type\":\"claim\"},{\"id\":\"836575\",\"type\":\"claim\"},{\"id\":\"836576\",\"type\":\"claim\"},{\"id\":\"836577\",\"type\":\"claim\"},{\"id\":\"836578\",\"type\":\"claim\"},{\"id\":\"836631\",\"type\":\"claim\"},{\"id\":\"836633\",\"type\":\"claim\"},{\"id\":\"836780\",\"type\":\"claim\"},{\"id\":\"836795\",\"type\":\"claim\"},{\"id\":\"836796\",\"type\":\"claim\"},{\"id\":\"836837\",\"type\":\"claim\"},{\"id\":\"836923\",\"type\":\"claim\"},{\"id\":\"836938\",\"type\":\"claim\"},{\"id\":\"836939\",\"type\":\"claim\"},{\"id\":\"836944\",\"type\":\"claim\"},{\"id\":\"836945\",\"type\":\"claim\"},{\"id\":\"836946\",\"type\":\"claim\"},{\"id\":\"836949\",\"type\":\"claim\"},{\"id\":\"836955\",\"type\":\"claim\"},{\"id\":\"836958\",\"type\":\"claim\"},{\"id\":\"836961\",\"type\":\"claim\"},{\"id\":\"837037\",\"type\":\"claim\"},{\"id\":\"837040\",\"type\":\"claim\"},{\"id\":\"837211\",\"type\":\"claim\"},{\"id\":\"837336\",\"type\":\"claim\"},{\"id\":\"837519\",\"type\":\"claim\"},{\"id\":\"837520\",\"type\":\"claim\"},{\"id\":\"837521\",\"type\":\"claim\"},{\"id\":\"837525\",\"type\":\"claim\"},{\"id\":\"837535\",\"type\":\"claim\"},{\"id\":\"837543\",\"type\":\"claim\"},{\"id\":\"837553\",\"type\":\"claim\"},{\"id\":\"837584\",\"type\":\"claim\"},{\"id\":\"837588\",\"type\":\"claim\"},{\"id\":\"837623\",\"type\":\"claim\"},{\"id\":\"837630\",\"type\":\"claim\"},{\"id\":\"837635\",\"type\":\"claim\"},{\"id\":\"837636\",\"type\":\"claim\"},{\"id\":\"837646\",\"type\":\"claim\"},{\"id\":\"837647\",\"type\":\"claim\"},{\"id\":\"837654\",\"type\":\"claim\"},{\"id\":\"837656\",\"type\":\"claim\"},{\"id\":\"837658\",\"type\":\"claim\"},{\"id\":\"837661\",\"type\":\"claim\"},{\"id\":\"837670\",\"type\":\"claim\"},{\"id\":\"837673\",\"type\":\"claim\"},{\"id\":\"837675\",\"type\":\"claim\"},{\"id\":\"837705\",\"type\":\"claim\"},{\"id\":\"837708\",\"type\":\"claim\"},{\"id\":\"837729\",\"type\":\"claim\"},{\"id\":\"837752\",\"type\":\"claim\"},{\"id\":\"837764\",\"type\":\"claim\"},{\"id\":\"837796\",\"type\":\"claim\"},{\"id\":\"837797\",\"type\":\"claim\"},{\"id\":\"837804\",\"type\":\"claim\"},{\"id\":\"837813\",\"type\":\"claim\"},{\"id\":\"837815\",\"type\":\"claim\"},{\"id\":\"837817\",\"type\":\"claim\"},{\"id\":\"837821\",\"type\":\"claim\"},{\"id\":\"837826\",\"type\":\"claim\"},{\"id\":\"837830\",\"type\":\"claim\"},{\"id\":\"837831\",\"type\":\"claim\"},{\"id\":\"837833\",\"type\":\"claim\"},{\"id\":\"838286\",\"type\":\"claim\"},{\"id\":\"838290\",\"type\":\"claim\"},{\"id\":\"838291\",\"type\":\"claim\"},{\"id\":\"838294\",\"type\":\"claim\"},{\"id\":\"838296\",\"type\":\"claim\"},{\"id\":\"838297\",\"type\":\"claim\"},{\"id\":\"838298\",\"type\":\"claim\"},{\"id\":\"838299\",\"type\":\"claim\"},{\"id\":\"838356\",\"type\":\"claim\"},{\"id\":\"838382\",\"type\":\"claim\"},{\"id\":\"838394\",\"type\":\"claim\"},{\"id\":\"838395\",\"type\":\"claim\"},{\"id\":\"838396\",\"type\":\"claim\"},{\"id\":\"838397\",\"type\":\"claim\"},{\"id\":\"838398\",\"type\":\"claim\"},{\"id\":\"838399\",\"type\":\"claim\"},{\"id\":\"838400\",\"type\":\"claim\"},{\"id\":\"838401\",\"type\":\"claim\"},{\"id\":\"838402\",\"type\":\"claim\"},{\"id\":\"838403\",\"type\":\"claim\"},{\"id\":\"838404\",\"type\":\"claim\"},{\"id\":\"838405\",\"type\":\"claim\"},{\"id\":\"839109\",\"type\":\"claim\"},{\"id\":\"839110\",\"type\":\"claim\"},{\"id\":\"839112\",\"type\":\"claim\"},{\"id\":\"839654\",\"type\":\"claim\"},{\"id\":\"841120\",\"type\":\"claim\"},{\"id\":\"841144\",\"type\":\"claim\"},{\"id\":\"841391\",\"type\":\"claim\"},{\"id\":\"841477\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" + "size": 9445, + "text": "{\"data\":{\"id\":\"0000-0003-1419-2405\",\"type\":\"users\",\"attributes\":{\"givenName\":null,\"familyName\":null,\"name\":\"Martin Fenner\",\"orcid\":\"https://orcid.org/0000-0003-1419-2405\",\"github\":null,\"roleId\":\"staff_admin\",\"isActive\":true,\"created\":\"2019-09-10T07:56:46.000Z\",\"updated\":\"2019-11-19T16:55:30.000Z\",\"email\":\"mfenner@datacite.org\"},\"relationships\":{\"claims\":{\"data\":[{\"id\":\"3999\",\"type\":\"claim\"},{\"id\":\"4000\",\"type\":\"claim\"},{\"id\":\"4001\",\"type\":\"claim\"},{\"id\":\"4002\",\"type\":\"claim\"},{\"id\":\"4004\",\"type\":\"claim\"},{\"id\":\"4005\",\"type\":\"claim\"},{\"id\":\"4006\",\"type\":\"claim\"},{\"id\":\"4007\",\"type\":\"claim\"},{\"id\":\"4008\",\"type\":\"claim\"},{\"id\":\"4009\",\"type\":\"claim\"},{\"id\":\"4010\",\"type\":\"claim\"},{\"id\":\"4011\",\"type\":\"claim\"},{\"id\":\"4012\",\"type\":\"claim\"},{\"id\":\"4013\",\"type\":\"claim\"},{\"id\":\"4014\",\"type\":\"claim\"},{\"id\":\"4015\",\"type\":\"claim\"},{\"id\":\"4017\",\"type\":\"claim\"},{\"id\":\"4018\",\"type\":\"claim\"},{\"id\":\"4019\",\"type\":\"claim\"},{\"id\":\"4020\",\"type\":\"claim\"},{\"id\":\"4021\",\"type\":\"claim\"},{\"id\":\"4022\",\"type\":\"claim\"},{\"id\":\"6134\",\"type\":\"claim\"},{\"id\":\"6135\",\"type\":\"claim\"},{\"id\":\"6138\",\"type\":\"claim\"},{\"id\":\"6139\",\"type\":\"claim\"},{\"id\":\"6140\",\"type\":\"claim\"},{\"id\":\"6141\",\"type\":\"claim\"},{\"id\":\"6142\",\"type\":\"claim\"},{\"id\":\"6145\",\"type\":\"claim\"},{\"id\":\"6146\",\"type\":\"claim\"},{\"id\":\"6147\",\"type\":\"claim\"},{\"id\":\"6148\",\"type\":\"claim\"},{\"id\":\"6153\",\"type\":\"claim\"},{\"id\":\"6154\",\"type\":\"claim\"},{\"id\":\"22383\",\"type\":\"claim\"},{\"id\":\"22385\",\"type\":\"claim\"},{\"id\":\"22386\",\"type\":\"claim\"},{\"id\":\"22387\",\"type\":\"claim\"},{\"id\":\"22388\",\"type\":\"claim\"},{\"id\":\"22389\",\"type\":\"claim\"},{\"id\":\"35002\",\"type\":\"claim\"},{\"id\":\"35005\",\"type\":\"claim\"},{\"id\":\"35509\",\"type\":\"claim\"},{\"id\":\"649412\",\"type\":\"claim\"},{\"id\":\"649590\",\"type\":\"claim\"},{\"id\":\"649701\",\"type\":\"claim\"},{\"id\":\"649844\",\"type\":\"claim\"},{\"id\":\"649845\",\"type\":\"claim\"},{\"id\":\"650063\",\"type\":\"claim\"},{\"id\":\"650092\",\"type\":\"claim\"},{\"id\":\"650137\",\"type\":\"claim\"},{\"id\":\"650138\",\"type\":\"claim\"},{\"id\":\"650139\",\"type\":\"claim\"},{\"id\":\"650140\",\"type\":\"claim\"},{\"id\":\"650141\",\"type\":\"claim\"},{\"id\":\"650142\",\"type\":\"claim\"},{\"id\":\"650143\",\"type\":\"claim\"},{\"id\":\"650403\",\"type\":\"claim\"},{\"id\":\"650480\",\"type\":\"claim\"},{\"id\":\"650490\",\"type\":\"claim\"},{\"id\":\"650491\",\"type\":\"claim\"},{\"id\":\"651202\",\"type\":\"claim\"},{\"id\":\"651610\",\"type\":\"claim\"},{\"id\":\"651612\",\"type\":\"claim\"},{\"id\":\"651613\",\"type\":\"claim\"},{\"id\":\"651615\",\"type\":\"claim\"},{\"id\":\"651760\",\"type\":\"claim\"},{\"id\":\"651771\",\"type\":\"claim\"},{\"id\":\"651772\",\"type\":\"claim\"},{\"id\":\"651773\",\"type\":\"claim\"},{\"id\":\"651774\",\"type\":\"claim\"},{\"id\":\"651776\",\"type\":\"claim\"},{\"id\":\"652085\",\"type\":\"claim\"},{\"id\":\"652086\",\"type\":\"claim\"},{\"id\":\"652087\",\"type\":\"claim\"},{\"id\":\"652088\",\"type\":\"claim\"},{\"id\":\"652094\",\"type\":\"claim\"},{\"id\":\"652198\",\"type\":\"claim\"},{\"id\":\"652791\",\"type\":\"claim\"},{\"id\":\"652792\",\"type\":\"claim\"},{\"id\":\"652793\",\"type\":\"claim\"},{\"id\":\"652794\",\"type\":\"claim\"},{\"id\":\"652869\",\"type\":\"claim\"},{\"id\":\"653788\",\"type\":\"claim\"},{\"id\":\"653789\",\"type\":\"claim\"},{\"id\":\"653790\",\"type\":\"claim\"},{\"id\":\"653791\",\"type\":\"claim\"},{\"id\":\"653792\",\"type\":\"claim\"},{\"id\":\"656699\",\"type\":\"claim\"},{\"id\":\"656704\",\"type\":\"claim\"},{\"id\":\"656706\",\"type\":\"claim\"},{\"id\":\"656708\",\"type\":\"claim\"},{\"id\":\"656709\",\"type\":\"claim\"},{\"id\":\"656711\",\"type\":\"claim\"},{\"id\":\"656712\",\"type\":\"claim\"},{\"id\":\"656714\",\"type\":\"claim\"},{\"id\":\"656717\",\"type\":\"claim\"},{\"id\":\"656719\",\"type\":\"claim\"},{\"id\":\"656722\",\"type\":\"claim\"},{\"id\":\"656726\",\"type\":\"claim\"},{\"id\":\"656728\",\"type\":\"claim\"},{\"id\":\"656729\",\"type\":\"claim\"},{\"id\":\"656732\",\"type\":\"claim\"},{\"id\":\"656733\",\"type\":\"claim\"},{\"id\":\"656734\",\"type\":\"claim\"},{\"id\":\"656737\",\"type\":\"claim\"},{\"id\":\"658441\",\"type\":\"claim\"},{\"id\":\"658443\",\"type\":\"claim\"},{\"id\":\"658444\",\"type\":\"claim\"},{\"id\":\"658445\",\"type\":\"claim\"},{\"id\":\"658446\",\"type\":\"claim\"},{\"id\":\"658447\",\"type\":\"claim\"},{\"id\":\"658448\",\"type\":\"claim\"},{\"id\":\"672572\",\"type\":\"claim\"},{\"id\":\"672574\",\"type\":\"claim\"},{\"id\":\"672576\",\"type\":\"claim\"},{\"id\":\"672578\",\"type\":\"claim\"},{\"id\":\"672588\",\"type\":\"claim\"},{\"id\":\"783425\",\"type\":\"claim\"},{\"id\":\"787460\",\"type\":\"claim\"},{\"id\":\"790849\",\"type\":\"claim\"},{\"id\":\"790850\",\"type\":\"claim\"},{\"id\":\"790851\",\"type\":\"claim\"},{\"id\":\"790852\",\"type\":\"claim\"},{\"id\":\"790853\",\"type\":\"claim\"},{\"id\":\"790854\",\"type\":\"claim\"},{\"id\":\"790855\",\"type\":\"claim\"},{\"id\":\"790856\",\"type\":\"claim\"},{\"id\":\"791059\",\"type\":\"claim\"},{\"id\":\"791060\",\"type\":\"claim\"},{\"id\":\"791061\",\"type\":\"claim\"},{\"id\":\"791170\",\"type\":\"claim\"},{\"id\":\"794517\",\"type\":\"claim\"},{\"id\":\"794518\",\"type\":\"claim\"},{\"id\":\"794519\",\"type\":\"claim\"},{\"id\":\"794520\",\"type\":\"claim\"},{\"id\":\"794521\",\"type\":\"claim\"},{\"id\":\"794522\",\"type\":\"claim\"},{\"id\":\"794896\",\"type\":\"claim\"},{\"id\":\"804681\",\"type\":\"claim\"},{\"id\":\"804686\",\"type\":\"claim\"},{\"id\":\"804687\",\"type\":\"claim\"},{\"id\":\"804688\",\"type\":\"claim\"},{\"id\":\"804689\",\"type\":\"claim\"},{\"id\":\"804690\",\"type\":\"claim\"},{\"id\":\"804691\",\"type\":\"claim\"},{\"id\":\"804692\",\"type\":\"claim\"},{\"id\":\"804693\",\"type\":\"claim\"},{\"id\":\"809797\",\"type\":\"claim\"},{\"id\":\"809807\",\"type\":\"claim\"},{\"id\":\"809864\",\"type\":\"claim\"},{\"id\":\"809893\",\"type\":\"claim\"},{\"id\":\"809915\",\"type\":\"claim\"},{\"id\":\"809916\",\"type\":\"claim\"},{\"id\":\"828332\",\"type\":\"claim\"},{\"id\":\"835855\",\"type\":\"claim\"},{\"id\":\"836528\",\"type\":\"claim\"},{\"id\":\"836557\",\"type\":\"claim\"},{\"id\":\"836558\",\"type\":\"claim\"},{\"id\":\"836559\",\"type\":\"claim\"},{\"id\":\"836565\",\"type\":\"claim\"},{\"id\":\"836566\",\"type\":\"claim\"},{\"id\":\"836567\",\"type\":\"claim\"},{\"id\":\"836568\",\"type\":\"claim\"},{\"id\":\"836569\",\"type\":\"claim\"},{\"id\":\"836570\",\"type\":\"claim\"},{\"id\":\"836571\",\"type\":\"claim\"},{\"id\":\"836572\",\"type\":\"claim\"},{\"id\":\"836573\",\"type\":\"claim\"},{\"id\":\"836574\",\"type\":\"claim\"},{\"id\":\"836575\",\"type\":\"claim\"},{\"id\":\"836576\",\"type\":\"claim\"},{\"id\":\"836577\",\"type\":\"claim\"},{\"id\":\"836578\",\"type\":\"claim\"},{\"id\":\"836631\",\"type\":\"claim\"},{\"id\":\"836633\",\"type\":\"claim\"},{\"id\":\"836780\",\"type\":\"claim\"},{\"id\":\"836795\",\"type\":\"claim\"},{\"id\":\"836796\",\"type\":\"claim\"},{\"id\":\"836837\",\"type\":\"claim\"},{\"id\":\"836923\",\"type\":\"claim\"},{\"id\":\"836938\",\"type\":\"claim\"},{\"id\":\"836939\",\"type\":\"claim\"},{\"id\":\"836944\",\"type\":\"claim\"},{\"id\":\"836945\",\"type\":\"claim\"},{\"id\":\"836946\",\"type\":\"claim\"},{\"id\":\"836949\",\"type\":\"claim\"},{\"id\":\"836955\",\"type\":\"claim\"},{\"id\":\"836958\",\"type\":\"claim\"},{\"id\":\"836961\",\"type\":\"claim\"},{\"id\":\"837037\",\"type\":\"claim\"},{\"id\":\"837040\",\"type\":\"claim\"},{\"id\":\"837211\",\"type\":\"claim\"},{\"id\":\"837336\",\"type\":\"claim\"},{\"id\":\"837519\",\"type\":\"claim\"},{\"id\":\"837520\",\"type\":\"claim\"},{\"id\":\"837521\",\"type\":\"claim\"},{\"id\":\"837525\",\"type\":\"claim\"},{\"id\":\"837535\",\"type\":\"claim\"},{\"id\":\"837543\",\"type\":\"claim\"},{\"id\":\"837553\",\"type\":\"claim\"},{\"id\":\"837584\",\"type\":\"claim\"},{\"id\":\"837588\",\"type\":\"claim\"},{\"id\":\"837623\",\"type\":\"claim\"},{\"id\":\"837630\",\"type\":\"claim\"},{\"id\":\"837635\",\"type\":\"claim\"},{\"id\":\"837636\",\"type\":\"claim\"},{\"id\":\"837646\",\"type\":\"claim\"},{\"id\":\"837647\",\"type\":\"claim\"},{\"id\":\"837654\",\"type\":\"claim\"},{\"id\":\"837656\",\"type\":\"claim\"},{\"id\":\"837658\",\"type\":\"claim\"},{\"id\":\"837661\",\"type\":\"claim\"},{\"id\":\"837670\",\"type\":\"claim\"},{\"id\":\"837673\",\"type\":\"claim\"},{\"id\":\"837675\",\"type\":\"claim\"},{\"id\":\"837705\",\"type\":\"claim\"},{\"id\":\"837708\",\"type\":\"claim\"},{\"id\":\"837729\",\"type\":\"claim\"},{\"id\":\"837752\",\"type\":\"claim\"},{\"id\":\"837764\",\"type\":\"claim\"},{\"id\":\"837796\",\"type\":\"claim\"},{\"id\":\"837797\",\"type\":\"claim\"},{\"id\":\"837804\",\"type\":\"claim\"},{\"id\":\"837813\",\"type\":\"claim\"},{\"id\":\"837815\",\"type\":\"claim\"},{\"id\":\"837817\",\"type\":\"claim\"},{\"id\":\"837821\",\"type\":\"claim\"},{\"id\":\"837826\",\"type\":\"claim\"},{\"id\":\"837830\",\"type\":\"claim\"},{\"id\":\"837831\",\"type\":\"claim\"},{\"id\":\"837833\",\"type\":\"claim\"},{\"id\":\"838286\",\"type\":\"claim\"},{\"id\":\"838290\",\"type\":\"claim\"},{\"id\":\"838291\",\"type\":\"claim\"},{\"id\":\"838294\",\"type\":\"claim\"},{\"id\":\"838296\",\"type\":\"claim\"},{\"id\":\"838297\",\"type\":\"claim\"},{\"id\":\"838298\",\"type\":\"claim\"},{\"id\":\"838299\",\"type\":\"claim\"},{\"id\":\"838356\",\"type\":\"claim\"},{\"id\":\"838382\",\"type\":\"claim\"},{\"id\":\"838394\",\"type\":\"claim\"},{\"id\":\"838395\",\"type\":\"claim\"},{\"id\":\"838396\",\"type\":\"claim\"},{\"id\":\"838397\",\"type\":\"claim\"},{\"id\":\"838398\",\"type\":\"claim\"},{\"id\":\"838399\",\"type\":\"claim\"},{\"id\":\"838400\",\"type\":\"claim\"},{\"id\":\"838401\",\"type\":\"claim\"},{\"id\":\"838402\",\"type\":\"claim\"},{\"id\":\"838403\",\"type\":\"claim\"},{\"id\":\"838404\",\"type\":\"claim\"},{\"id\":\"838405\",\"type\":\"claim\"},{\"id\":\"839109\",\"type\":\"claim\"},{\"id\":\"839110\",\"type\":\"claim\"},{\"id\":\"839112\",\"type\":\"claim\"},{\"id\":\"839654\",\"type\":\"claim\"},{\"id\":\"841120\",\"type\":\"claim\"},{\"id\":\"841144\",\"type\":\"claim\"},{\"id\":\"841391\",\"type\":\"claim\"},{\"id\":\"841477\",\"type\":\"claim\"},{\"id\":\"841953\",\"type\":\"claim\"}]}}},\"meta\":{\"dois\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}]}}" }, "cookies": [], "headers": [ @@ -58,8 +58,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:37.260Z", - "time": 129, + "startedDateTime": "2020-05-04T16:42:23.831Z", + "time": 156, "timings": { "blocked": -1, "connect": -1, @@ -67,7 +67,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 129 + "wait": 156 } }, { @@ -103,11 +103,11 @@ "url": "https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405" }, "response": { - "bodySize": 66619, + "bodySize": 65704, "content": { "mimeType": "application/json; charset=utf-8", - "size": 66619, - "text": "{\"data\":[{\"id\":\"10.14454/1x4x-9056\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.14454/1x4x-9056\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.14454/1x4x-9056\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":47,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:58:38.000Z\",\"registered\":\"2018-12-30T16:58:39.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T07:00:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Cool DOI's\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-15\",\"dateType\":\"Created\"},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"relatedIdentifierType\":\"URL\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabrica\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-23T06:32:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T05:01:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-23T03:01:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00359\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00359\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00359\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Ffff\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"ssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[{\"name\":\"Dddd\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939140000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-29T10:41:17.000Z\",\"registered\":\"2019-04-29T10:41:18.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-23T01:31:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00365\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00365\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00365\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9953341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-04-01T06:21:10.000Z\",\"registered\":\"2020-04-01T06:21:11.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T06:32:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00362\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00362\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00362\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite44\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9952041300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":9,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-07T08:11:09.000Z\",\"registered\":\"2019-05-07T08:11:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-22T04:31:25.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.0010\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.0010\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.0010\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"pending teeeeeeeee\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Preprint\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124979310000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-20T12:43:30.000Z\",\"registered\":\"2019-02-20T12:43:32.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-22T02:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-21T07:02:55.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0065\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0065\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0065\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dfd\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-01-10/\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129439710000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T10:29:53.000Z\",\"registered\":\"2019-01-24T10:29:53.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T05:32:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.004\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.004\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.004\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"dbg is down!!!!!!!!!!!!!!!!\"},{\"title\":\"Zikoukim\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"Musical Score\",\"container\":{},\"publicationYear\":2019,\"subjects\":[{\"subject\":\"Karamela\"},{\"subject\":\"Music Composition\"},{\"subject\":\"Music Education\"},{\"subject\":\"Musicology\"}],\"contributors\":[{\"name\":\"Dori, Danit Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Danit Sweet\",\"familyName\":\"Dori\",\"affiliation\":[\"Main Campus, Harvard University (Cambridge)\"],\"contributorType\":\"DataCurator\"},{\"name\":\"Jerusalem College Of Technology (Jerusalem)\",\"nameType\":\"Organizational\",\"affiliation\":[]}],\"dates\":[{\"date\":\"2019-02-14/2020\",\"dateType\":\"Collected\"},{\"date\":\"2020/2024\",\"dateType\":\"Created\"},{\"date\":\"2019-02-14\",\"dateType\":\"Updated\"},{\"date\":\"2019-05/2020\",\"dateType\":\"Valid\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":\"he\",\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"IsNewVersionOf\",\"relatedIdentifier\":\"10.1007/s10841-006-9063-4\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[\"jpg\"],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc/4.0\"}],\"descriptions\":[{\"description\":\"Peretz was born and raised in Tiberias. His father was of Moroccan Jewish origin and his mother was of Iraqi Jewish origin. Peretz started singing as a poet in a synagogue in Tiberias at the age of 13 and began to compose songs. At the age of 18 Peretz was inducted into the Israel Defense Forces for obligatory military service. During his service, he performed \\\"שיר המעלות‬\\\", during Yom Hazikaron (the Israeli Memorial Day) ceremonies held at his base that received positive feedback leading to him serving in a military music band. In 2002, he started writing songs while in the Army. After release from the Army, he released his first album in 2005 entitled Mabit El Hamromim (מביט אל המרומים‬) that saw sale of over 10,000 copies in Israel\",\"descriptionType\":\"Methods\"},{\"description\":\"2017: Bucher Chadash (בחור חדש) (meaning New Guy)\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"Moshe Peretz (Hebrew: משה פרץ‬; born 10 May 1983) is an Israeli \\\"Mizrahi\\\" pop singer-songwriter and composer. He is also currently serving as a judge for the first season of The X Factor Israel.\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"Tiberias, Israel\"},{\"geoLocationPoint\":{\"pointLatitude\":\"10.0\",\"pointLongitude\":\"95.0\"}},{\"geoLocationBox\":{\"eastBoundLongitude\":\"55.0\",\"northBoundLatitude\":\"9.0\",\"southBoundLatitude\":\"21.0\",\"westBoundLongitude\":\"95.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"Go Music\",\"funderName\":\"Hadassah Medical Center (Jerusalem)\",\"awardNumber\":\"Music\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/view/delivery/EXLDEV1_INST/124959130000121\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-07T06:52:08.000Z\",\"registered\":\"2019-02-07T06:52:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T04:31:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00370\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00370\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00370\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"sasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-06-28\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9942040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-06-04T05:25:24.000Z\",\"registered\":\"2019-06-04T05:25:24.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-21T02:02:26.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.5438/mk65-3m12\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.5438/mk65-3m12\",\"identifiers\":[{\"identifier\":\"https://doi.org/10.5438/mk65-3m12\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[\"DataCite\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Eating your own Dog Food\"}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"datacite\"},{\"subject\":\"doi\"},{\"subject\":\"metadata\"},{\"subject\":\"featured\"}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-20\",\"dateType\":\"Issued\"},{\"date\":\"2016-12-20\",\"dateType\":\"Created\"},{\"date\":\"2016-12-20\",\"dateType\":\"Updated\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"article\",\"citeproc\":\"post-weblog\",\"schemaOrg\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/0012\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"References\",\"relatedIdentifier\":\"10.5438/55e5-t5c0\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":null,\"rightsUri\":null}],\"descriptions\":[{\"lang\":null,\"description\":\"Eating your own dog food is a slang term to describe that an organization should itself use the products and services it provides. For DataCite this means that we should use DOIs with appropriate metadata and strategies for long-term preservation for...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/eating-your-own-dog-food/\",\"contentUrl\":null,\"metadataVersion\":4,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":2,\"citationCount\":0,\"partCount\":0,\"partOfCount\":1,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2018-12-30T16:40:29.000Z\",\"registered\":\"2018-12-30T16:40:30.000Z\",\"published\":\"2016\",\"updated\":\"2020-04-21T01:02:54.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0057\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0057\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0057\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"sasasa\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933041400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-23T12:59:24.000Z\",\"registered\":\"2019-01-23T12:59:26.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-21T01:01:08.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/5305-60-5502\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/5305-60-5502\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Where Angels Fear to Tread\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://kuhnschmeler.info/carmelia\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-26T20:09:04.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T05:01:49.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-20T04:02:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-18T02:02:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123h\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123h\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Vanity Fair\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://beahan.name/domenic.treutel\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":335,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-31T21:41:43.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-18T01:01:12.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00356\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00356\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00356\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"tytytyty hjhjh\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2018-08-24\",\"dateType\":\"Accepted\"},{\"date\":\"2017-04-01\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Open\"},{\"rights\":\"aaaaaab jm jjjjjjjjjjjj opppppppppp\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9938841000521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T10:54:22.000Z\",\"registered\":\"2019-04-18T10:54:23.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-17T22:00:59.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/3030-53-3821\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/3030-53-3821\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Precious Bane\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://schillermohr.com/theda_marks\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T21:25:18.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T21:32:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00368\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00368\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00368\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test4545455\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9940741400521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-22T11:12:13.000Z\",\"registered\":\"2019-05-22T11:12:13.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-17T20:31:31.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/go_esploro.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/go_esploro.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/go_esploro.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"},{\"nameIdentifier\":\"WWW\",\"nameIdentifierScheme\":\"Wikidata\"}]}],\"titles\":[{\"title\":\"my doi test sand cont\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"Adam, Omer\",\"nameType\":\"Personal\",\"givenName\":\"Omer\",\"familyName\":\"Adam\",\"contributorType\":\"Other\",\"nameIdentifiers\":[{\"nameIdentifier\":\"llll\",\"nameIdentifierScheme\":\"Library of Congress Name Authority File Number\"},{\"nameIdentifier\":\"VVV\",\"nameIdentifierScheme\":\"VIAF\"},{\"nameIdentifier\":\"pppp\",\"nameIdentifierScheme\":\"Pubmed author ID\"},{\"nameIdentifier\":\"ww\",\"nameIdentifierScheme\":\"Wikidata\"},{\"nameIdentifier\":\"pp\",\"nameIdentifierScheme\":\"Pivot ID\"}],\"affiliation\":[]}],\"dates\":[{\"date\":\"2016-05-04\",\"dateType\":\"Available\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913310000121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":7,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-04-18T20:57:27.000Z\",\"registered\":\"2019-04-18T20:57:28.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:31:46.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-17T02:01:29.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-17T01:02:05.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-16T22:03:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":83,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":83}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":32},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":38},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":60},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":66},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":17}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":66},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":15},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":2}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":66},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":2},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":1}],\"sources\":[{\"id\":\"mds\",\"title\":\"Mds\",\"count\":66},{\"id\":\"test\",\"title\":\"Test\",\"count\":12},{\"id\":\"fabricaForm\",\"title\":\"Fabrica Form\",\"count\":4},{\"id\":\"fabrica\",\"title\":\"Fabrica\",\"count\":1}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"linksChecked\":0,\"linksWithSchemaOrg\":[{\"id\":\"0\",\"title\":\"0\",\"count\":70},{\"id\":\"1\",\"title\":\"1\",\"count\":5}],\"linkChecksSchemaOrgId\":5,\"linkChecksDcIdentifier\":0,\"linkChecksCitationDoi\":0,\"subjects\":[{\"id\":\"Africa\",\"title\":\"Africa\",\"count\":12},{\"id\":\"Malaria\",\"title\":\"Malaria\",\"count\":12},{\"id\":\"Mitochondrial genome\",\"title\":\"Mitochondrial Genome\",\"count\":12},{\"id\":\"Parasites\",\"title\":\"Parasites\",\"count\":12},{\"id\":\"Phylogeny\",\"title\":\"Phylogeny\",\"count\":12},{\"id\":\"Plasmodium\",\"title\":\"Plasmodium\",\"count\":12},{\"id\":\"Taxonomy\",\"title\":\"Taxonomy\",\"count\":12},{\"id\":\"featured\",\"title\":\"Featured\",\"count\":4},{\"id\":\"Karamela\",\"title\":\"Karamela\",\"count\":3},{\"id\":\"Music Composition\",\"title\":\"Music Composition\",\"count\":3},{\"id\":\"Music Education\",\"title\":\"Music Education\",\"count\":3},{\"id\":\"Musicology\",\"title\":\"Musicology\",\"count\":3},{\"id\":\"doi\",\"title\":\"Doi\",\"count\":3},{\"id\":\"Architecture\",\"title\":\"Architecture\",\"count\":1},{\"id\":\"Biology\",\"title\":\"Biology\",\"count\":1}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" + "size": 65704, + "text": "{\"data\":[{\"id\":\"10.80225/da52-7919\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/da52-7919\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/da52-7919\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Buys, Matt\",\"nameType\":\"Personal\",\"givenName\":\"Matt\",\"familyName\":\"Buys\",\"affiliation\":[],\"nameIdentifiers\":[]},{\"name\":\"Dasler, Robin\",\"nameType\":\"Personal\",\"givenName\":\"Robin\",\"familyName\":\"Dasler\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0002-4695-7874\",\"nameIdentifierScheme\":\"ORCID\"}]},{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"PIDs for instruments: a way forward\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"instrument\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"rda\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[{\"name\":\"Garza, Kristian\",\"nameType\":\"Personal\",\"givenName\":\"Kristian\",\"familyName\":\"Garza\",\"affiliation\":[],\"contributorType\":\"DataCollector\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-3484-6875\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\",\"dateInformation\":null}],\"language\":null,\"types\":{\"resourceTypeGeneral\":\"InteractiveResource\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"InteractiveResource\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"HasMetadata\",\"relatedIdentifier\":\"10.7914/sn/sh\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"MIT License\",\"rightsUri\":\"http://spdx.org/licenses/MIT.json\"}],\"descriptions\":[{\"lang\":null,\"description\":\"As a community-driven organization, we continue to focus and explore use cases with our members. The persistent identification and citation of scientific instruments is a particular use case that continues to gain momentum across community stakeholders...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[{\"awardUri\":null,\"awardTitle\":null,\"funderName\":\"American Red Cross\",\"awardNumber\":null,\"funderIdentifier\":\"https://doi.org/10.13039/100006744\",\"funderIdentifierType\":\"Crossref Funder ID\"}],\"url\":\"https://blog.datacite.org/pids-for-instruments-a-way-forward/\",\"contentUrl\":[],\"metadataVersion\":14,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-19T10:51:07.000Z\",\"registered\":\"2020-03-19T10:51:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-04T08:02:43.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00108\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00108\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00108\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law 88\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"BLSAAAAA doi\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"Dataset\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"},{\"funderName\":\"University of Bucharest Bucharest\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9935441500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-18T06:15:32.000Z\",\"registered\":\"2019-02-18T06:15:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-04T05:31:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/6721-75-7026\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/6721-75-7026\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The Cricket on the Hearth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://wuckertgerlach.com/eusebia_halvorson\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":433,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-27T21:52:09.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-04T04:00:52.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.80225/3t09-t059\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.80225/3t09-t059\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.80225/3t09-t059\",\"identifierType\":\"DOI\"},{\"identifier\":\"10.80225/3t09-t059\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Fenner, Martin\",\"nameType\":\"Personal\",\"givenName\":\"Martin\",\"familyName\":\"Fenner\",\"affiliation\":[],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"lang\":null,\"title\":\"Cool DOI's\",\"titleType\":null}],\"publisher\":\"DataCite\",\"container\":{\"type\":\"Series\",\"identifier\":\"10.5438/0000-00ss\",\"identifierType\":\"DOI\"},\"publicationYear\":2016,\"subjects\":[{\"subject\":\"doi\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null},{\"subject\":\"featured\",\"valueUri\":null,\"schemeUri\":null,\"subjectScheme\":null}],\"contributors\":[],\"dates\":[{\"date\":\"2016-12-15\",\"dateType\":\"Issued\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Created\",\"dateInformation\":null},{\"date\":\"2016-12-15\",\"dateType\":\"Updated\",\"dateInformation\":null}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"BlogPosting\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"IsPartOf\",\"relatedIdentifier\":\"10.5438/0000-00ss\",\"resourceTypeGeneral\":\"Text\",\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"https://www.w3.org/Provider/Style/URI\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"URL\",\"relatedMetadataScheme\":null},{\"schemeUri\":null,\"schemeType\":null,\"relationType\":\"References\",\"relatedIdentifier\":\"10.1371/journal.pone.0115253\",\"resourceTypeGeneral\":null,\"relatedIdentifierType\":\"DOI\",\"relatedMetadataScheme\":null}],\"sizes\":[],\"formats\":[],\"version\":\"1.0\",\"rightsList\":[{\"rights\":\"Open Access\",\"rightsUri\":\"info:eu-repo/semantics/OpenAccess\"}],\"descriptions\":[{\"lang\":null,\"description\":\"In 1998 Tim Berners-Lee coined the term cool URIs (1998), that is URIs that don’t change. We know that URLs referenced in the scholarly literature are often not cool, leading to link rot (Klein et al., 2014) and making it hard or impossible to find...\",\"descriptionType\":\"Abstract\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://blog.datacite.org/cool-dois/\",\"contentUrl\":[],\"metadataVersion\":7,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"fabricaForm\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-03-20T12:45:10.000Z\",\"registered\":\"2020-03-20T12:45:11.000Z\",\"published\":\"2016\",\"updated\":\"2020-05-03T12:30:18.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0034\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0034\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0034\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"test datacite sssssss\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[\"4568.5 kb\"],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY-NC-SA V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by-nc-sa/4.0\"}],\"descriptions\":[{\"description\":\"my abstract description!\",\"descriptionType\":\"Abstract\"},{\"description\":\"cool methods\",\"descriptionType\":\"Methods\"},{\"description\":\"cool methods secont one\",\"descriptionType\":\"Methods\"},{\"description\":\"cool techinal info\",\"descriptionType\":\"TechnicalInfo\"},{\"description\":\"additional or other???\",\"descriptionType\":\"Other\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241300521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-15T09:11:24.000Z\",\"registered\":\"2020-04-06T08:46:15.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-03T09:32:33.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/00377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/00377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/00377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"gggg, aaaa\",\"nameType\":\"Personal\",\"givenName\":\"aaaa\",\"familyName\":\"gggg\",\"affiliation\":[]},{\"name\":\"My Group Author\",\"nameType\":\"Organizational\",\"affiliation\":[],\"nameIdentifiers\":[]}],\"titles\":[{\"title\":\"test group author\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[{\"name\":\"My Group 2\",\"nameType\":\"Organizational\",\"affiliation\":[],\"contributorType\":\"Other\",\"nameIdentifiers\":[]}],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.comdiscovery/openurl?institution=TRAINING_1_INST&rft.mms_id=9946741500521&rft_dat=ie=&vid=TRAINING_1_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-08-14T03:45:44.000Z\",\"registered\":\"2019-08-14T03:45:45.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T08:32:56.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/4542-79-4853\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/4542-79-4853\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"The House of Mirth\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://legros.com/margery\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":590,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T17:37:30.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:33:00.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/2657-20-9337\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/2657-20-9337\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Terrible Swift Sword\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://abernathy.io/salina\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-02-01T20:46:03.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T07:31:01.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123y\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123y\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Mother Night\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://blockpfannerstill.co/shalonda\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":413,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-27T17:25:49.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-03T06:31:15.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0066\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0066\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0066\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"בהבסה\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08/0002-12\",\"dateType\":\"Created\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"CHAP\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Book part\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"png\",\"pdf\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129449980000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T11:57:38.000Z\",\"registered\":\"2019-01-24T11:57:39.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T05:31:39.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cool_conf.0037\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cool_conf.0037\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cool_conf.0037\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearcherID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"ERA\"}]}],\"titles\":[{\"title\":\"Test url\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"RPRT\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Conference abstract\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129389770000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-16T16:41:22.000Z\",\"registered\":\"2019-01-16T16:53:46.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-03T04:31:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.00357\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.00357\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.00357\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea Sweet\",\"nameType\":\"Personal\",\"givenName\":\"Lea Sweet\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Alzheimer's research & therapy\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9939341500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-13T09:00:16.000Z\",\"registered\":\"2020-02-13T09:00:17.000Z\",\"published\":\"2020\",\"updated\":\"2020-05-02T10:02:06.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123f\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123f\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Have His Carcase\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://mohrschuster.co/jimmy\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-02-03T17:55:33.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T07:32:16.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/1613-30-6937\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/1613-30-6937\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"A Catskill Eagle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://lowemiller.net/phil\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":283,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-05T10:02:01.000Z\",\"registered\":\"2020-01-31T21:47:52.000Z\",\"published\":\"2011\",\"updated\":\"2020-05-02T06:00:53.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0090\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0090\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0090\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"UserIdentifierTypes\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"wqwqwqw\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"CreativeWork\",\"resourceType\":\"Model\",\"resourceTypeGeneral\":\"Model\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129569500000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-17T09:37:45.000Z\",\"registered\":\"2019-02-17T09:37:47.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T13:01:50.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/from_sand_datacite.09\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/from_sand_datacite.09\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/from_sand_datacite.09\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Bayandina, O. S\",\"nameType\":\"Personal\",\"givenName\":\"O. S\",\"familyName\":\"Bayandina\",\"affiliation\":[]},{\"name\":\"Alakoz, A. V\",\"nameType\":\"Personal\",\"givenName\":\"A. V\",\"familyName\":\"Alakoz\",\"affiliation\":[]},{\"name\":\"Peretz, Moshe\",\"nameType\":\"Personal\",\"givenName\":\"Moshe\",\"familyName\":\"Peretz\",\"affiliation\":[\"Main Campus, sub8\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"0000 0001 2103 2683\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"456789\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"arxivvvvv\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"era345\",\"nameIdentifierScheme\":\"eRA ID\"}]},{\"name\":\"Val’tts, I. E\",\"nameType\":\"Personal\",\"givenName\":\"I. E\",\"familyName\":\"Val’tts\",\"affiliation\":[]}],\"titles\":[{\"title\":\"Magnetic fields in methanol maser condensations based on data for related regions. Seven sources: Observational parameters\"}],\"publisher\":\"Main Campus\",\"container\":{},\"publicationYear\":2013,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2013\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-urmsand01.corp.exlibrisgroup.com:1801/discovery/fulldisplay/alma9913309800121/EXLDEV1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-17T05:45:01.000Z\",\"registered\":\"2020-02-17T05:45:02.000Z\",\"published\":\"2013\",\"updated\":\"2020-05-01T12:02:13.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/10377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/10377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/10377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test datacite subject\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841100521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-20T10:22:10.000Z\",\"registered\":\"2019-11-20T10:22:11.000Z\",\"published\":\"2019\",\"updated\":\"2020-05-01T10:02:47.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/datacite_go.0033\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/datacite_go.0033\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/datacite_go.0033\",\"identifierType\":\"DOI\"},{\"identifier\":\"1111-2222\",\"identifierType\":\"ISSN\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"TEST for Job - data cite - was existing333333333333\"}],\"publisher\":\"fsgs\",\"container\":{},\"publicationYear\":2017,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019-08\",\"dateType\":\"Available\"},{\"date\":\"2017\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9932241500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":3,\"schemaVersion\":null,\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-14T10:33:23.000Z\",\"registered\":\"2019-02-13T11:54:32.000Z\",\"published\":\"2017\",\"updated\":\"2020-04-30T10:31:24.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/06377\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/06377\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/06377\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Computer Science\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"test\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"BOOK\",\"bibtex\":\"book\",\"citeproc\":\"book\",\"schemaOrg\":\"Book\",\"resourceType\":\"Book\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.5555/test.11\",\"relatedIdentifierType\":\"DOI\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://null.esploro.exlibrisgroup.com/discovery/fulldisplay/alma9949841500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":1,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-11-19T12:32:09.000Z\",\"registered\":\"2019-11-19T12:32:10.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-29T09:00:45.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0071\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0071\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0071\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"affiliation\":[\"Clean Training, Law\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}]}],\"titles\":[{\"title\":\"datacite test jojojoojojojojojojojojojoj\"},{\"title\":\"aaaa\",\"titleType\":\"AlternativeTitle\"}],\"publisher\":\"bbbb\",\"container\":{},\"publicationYear\":2020,\"subjects\":[{\"subject\":\"keyworr\"},{\"subject\":\"Education Finance\"}],\"contributors\":[{\"name\":\"123, test\",\"nameType\":\"Personal\",\"givenName\":\"test\",\"familyName\":\"123\",\"affiliation\":[\"Clean Training, Harvard University Cambridge\"],\"contributorType\":\"Editor\"}],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":\"en\",\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Workflow\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"CC BY V4.0\",\"rightsUri\":\"https://creativecommons.org/licenses/by/4.0\"},{\"rights\":\"Open\"}],\"descriptions\":[{\"description\":\"abstarc\",\"descriptionType\":\"Abstract\"},{\"description\":\"additional des\",\"descriptionType\":\"Other\"}],\"geoLocations\":[{\"geoLocationPlace\":\"dfdfd\"},{\"geoLocationBox\":{\"eastBoundLongitude\":\"9.0\",\"northBoundLatitude\":\"1.0\",\"southBoundLatitude\":\"5.0\",\"westBoundLongitude\":\"6.0\"}}],\"fundingReferences\":[{\"awardTitle\":\"EsploroGrantWrapper\",\"funderName\":\"St. Jerome's University Waterloo\",\"awardNumber\":\"FROM DEPOSIT\",\"funderIdentifierType\":\"ISNI\"}],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933541500521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-28T11:39:04.000Z\",\"registered\":\"2019-01-28T11:39:07.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-29T07:01:48.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/pubb.0091\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/pubb.0091\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/pubb.0091\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Hayun, Lea\",\"nameType\":\"Personal\",\"givenName\":\"Lea\",\"familyName\":\"Hayun\",\"affiliation\":[\"Clean Training, Jerusalem College of Technology Jerusalem\"],\"nameIdentifiers\":[{\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Shalom & Lea\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2016\",\"dateType\":\"Accepted\"},{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"JOUR\",\"bibtex\":\"article\",\"citeproc\":\"article-journal\",\"schemaOrg\":\"ScholarlyArticle\",\"resourceType\":\"Journal article\",\"resourceTypeGeneral\":\"Text\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/view/delivery/TRAINING_1_INST/129589830000521\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-02-06T12:12:32.000Z\",\"registered\":\"2019-02-06T12:12:33.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T13:34:38.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123b\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123b\",\"identifiers\":[{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Benjamin Ollomo\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Patrick Durand\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Franck Prugnolle\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Emmanuel J. P. Douzery\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Céline Arnathau\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Dieudonné Nkoghe\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Eric Leroy\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"François Renaud\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"In Dubious Battle\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[{\"description\":\"Data from: A new malaria agent in African hominids.\"}],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://renner.name/norbert\",\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T17:02:53.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T13:34:09.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/0064\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/0064\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/0064\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Achakulwisut, P\",\"nameType\":\"Personal\",\"givenName\":\"P\",\"familyName\":\"Achakulwisut\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"},{\"nameIdentifier\":\"fdah1fdher656\",\"nameIdentifierScheme\":\"ISNI\"},{\"nameIdentifier\":\"hhhhhhh\",\"nameIdentifierScheme\":\"ResearchID\"},{\"nameIdentifier\":\"SCOPUSSSSSS\",\"nameIdentifierScheme\":\"Scopus ID\"},{\"nameIdentifier\":\"ppppppp\",\"nameIdentifierScheme\":\"arXiv ID\"},{\"nameIdentifier\":\"gogogogogo\",\"nameIdentifierScheme\":\"eRA ID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"geo\"}],\"publisher\":\"Clean Training\",\"container\":{},\"publicationYear\":2020,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2020\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"COMP\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"SoftwareSourceCode\",\"resourceType\":\"Code\",\"resourceTypeGeneral\":\"Software\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[{\"geoLocationPlace\":\"fgsfgsg\\nsgsgs\"},{\"geoLocationPlace\":\"gsgsg\\nsgsgsg\"}],\"fundingReferences\":[],\"url\":\"http://il-leana-800.Corp.Exlibrisgroup.com:1801/discovery/fulldisplay/alma9933040700521/TRAINING_1_INST:ResearchRepository\",\"contentUrl\":null,\"metadataVersion\":2,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-01-24T08:39:07.000Z\",\"registered\":\"2019-01-24T08:39:09.000Z\",\"published\":\"2020\",\"updated\":\"2020-04-28T09:01:42.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.21367/cw.00040\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.21367/cw.00040\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.21367/cw.00040\",\"identifierType\":\"DOI\"}],\"creators\":[{\"name\":\"Manevitz, Larry\",\"nameType\":\"Personal\",\"givenName\":\"Larry\",\"familyName\":\"Manevitz\",\"affiliation\":[]},{\"name\":\"Abbas, Emily Funny\",\"nameType\":\"Personal\",\"givenName\":\"Emily Funny\",\"familyName\":\"Abbas\",\"affiliation\":[\"University of Iowa Libraries, Nursing\"],\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}]}],\"titles\":[{\"title\":\"Dance1\"}],\"publisher\":\"University of Iowa Libraries\",\"container\":{},\"publicationYear\":2019,\"subjects\":[],\"contributors\":[],\"dates\":[{\"date\":\"2019\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"GEN\",\"bibtex\":\"misc\",\"citeproc\":\"article\",\"schemaOrg\":\"Event\",\"resourceType\":\"test type\",\"resourceTypeGeneral\":\"Event\"},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rights\":\"Closed\"},{\"rights\":\"Test copyright\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"https://qac01.alma.exlibrisgroup.com/discovery/openurl?institution=01IOWA_INST&rft.mms_id=9983548398302771&rft_dat=ie=&vid=01IOWA_INST:ResearchRepository&context=L\",\"contentUrl\":null,\"metadataVersion\":5,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"mds\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":0,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":0,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2019-05-23T16:16:43.000Z\",\"registered\":\"2019-05-23T16:16:44.000Z\",\"published\":\"2019\",\"updated\":\"2020-04-28T06:32:28.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"exlibris.esploro\",\"type\":\"clients\"}}}},{\"id\":\"10.70001/123\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.70001/123\",\"identifiers\":[{\"identifier\":\"https://handle.test.datacite.org/10.70001/123\",\"identifierType\":\"DOI\"},{\"identifier\":\"Ollomo B, Durand P, Prugnolle F, Douzery EJP, Arnathau C, Nkoghe D, Leroy E, Renaud F (2009) A new malaria agent in African hominids. PLoS Pathogens 5(5): e1000446.\",\"identifierType\":\"citation\"}],\"creators\":[{\"name\":\"Ollomo, Benjamin\",\"nameType\":\"Personal\",\"givenName\":\"Benjamin\",\"familyName\":\"Ollomo\",\"affiliation\":[]},{\"name\":\"Durand, Patrick\",\"nameType\":\"Personal\",\"givenName\":\"Patrick\",\"familyName\":\"Durand\",\"affiliation\":[]},{\"name\":\"Prugnolle, Franck\",\"nameType\":\"Personal\",\"givenName\":\"Franck\",\"familyName\":\"Prugnolle\",\"affiliation\":[]},{\"name\":\"Douzery, Emmanuel J. P.\",\"nameType\":\"Personal\",\"givenName\":\"Emmanuel J. P.\",\"familyName\":\"Douzery\",\"affiliation\":[]},{\"name\":\"Arnathau, Céline\",\"nameType\":\"Personal\",\"givenName\":\"Céline\",\"familyName\":\"Arnathau\",\"affiliation\":[]},{\"name\":\"Nkoghe, Dieudonné\",\"nameType\":\"Personal\",\"givenName\":\"Dieudonné\",\"familyName\":\"Nkoghe\",\"affiliation\":[]},{\"name\":\"Leroy, Eric\",\"nameType\":\"Personal\",\"givenName\":\"Eric\",\"familyName\":\"Leroy\",\"affiliation\":[]},{\"name\":\"Renaud, François\",\"nameType\":\"Personal\",\"givenName\":\"François\",\"familyName\":\"Renaud\",\"nameIdentifiers\":[{\"schemeUri\":\"https://orcid.org\",\"nameIdentifier\":\"https://orcid.org/0000-0003-1419-2405\",\"nameIdentifierScheme\":\"ORCID\"}],\"affiliation\":[]}],\"titles\":[{\"title\":\"Number the Stars\"}],\"publisher\":\"Dryad Digital Repository\",\"container\":{},\"publicationYear\":2011,\"subjects\":[{\"subject\":\"Phylogeny\"},{\"subject\":\"Malaria\"},{\"subject\":\"Parasites\"},{\"subject\":\"Taxonomy\"},{\"subject\":\"Mitochondrial genome\"},{\"subject\":\"Africa\"},{\"subject\":\"Plasmodium\"}],\"contributors\":[],\"dates\":[{\"date\":\"2011\",\"dateType\":\"Issued\"}],\"language\":null,\"types\":{\"ris\":\"DATA\",\"bibtex\":\"misc\",\"citeproc\":\"dataset\",\"schemaOrg\":\"Dataset\",\"resourceType\":\"DataPackage\",\"resourceTypeGeneral\":\"Dataset\"},\"relatedIdentifiers\":[{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/1\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"HasPart\",\"relatedIdentifier\":\"10.5061/dryad.8515/2\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"10.1371/journal.ppat.1000446\",\"relatedIdentifierType\":\"DOI\"},{\"relationType\":\"IsReferencedBy\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"},{\"relationType\":\"IsSupplementTo\",\"relatedIdentifier\":\"19478877\",\"relatedIdentifierType\":\"PMID\"}],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[{\"rightsUri\":\"http://creativecommons.org/publicdomain/zero/1.0\"}],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"url\":\"http://labadie.net/ramonita\",\"contentUrl\":null,\"metadataVersion\":1,\"schemaVersion\":\"http://datacite.org/schema/kernel-4\",\"source\":\"test\",\"isActive\":true,\"state\":\"findable\",\"reason\":null,\"viewCount\":454,\"downloadCount\":0,\"referenceCount\":0,\"citationCount\":4,\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-02-04T17:35:39.000Z\",\"registered\":\"2020-01-22T20:23:35.000Z\",\"published\":\"2011\",\"updated\":\"2020-04-28T05:32:30.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.datacite\",\"type\":\"clients\"}}}}],\"meta\":{\"total\":84,\"totalPages\":4,\"page\":1,\"states\":[{\"id\":\"findable\",\"title\":\"Findable\",\"count\":84}],\"resourceTypes\":[{\"id\":\"text\",\"title\":\"Text\",\"count\":33},{\"id\":\"software\",\"title\":\"Software\",\"count\":28},{\"id\":\"dataset\",\"title\":\"Dataset\",\"count\":19},{\"id\":\"interactive-resource\",\"title\":\"Interactive Resource\",\"count\":2},{\"id\":\"event\",\"title\":\"Event\",\"count\":1},{\"id\":\"model\",\"title\":\"Model\",\"count\":1}],\"created\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":20},{\"id\":\"2019\",\"title\":\"2019\",\"count\":62},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"published\":[{\"id\":\"2023\",\"title\":\"2023\",\"count\":1},{\"id\":\"2020\",\"title\":\"2020\",\"count\":22},{\"id\":\"2019\",\"title\":\"2019\",\"count\":39},{\"id\":\"2017\",\"title\":\"2017\",\"count\":2},{\"id\":\"2016\",\"title\":\"2016\",\"count\":5},{\"id\":\"2013\",\"title\":\"2013\",\"count\":1},{\"id\":\"2012\",\"title\":\"2012\",\"count\":1},{\"id\":\"2011\",\"title\":\"2011\",\"count\":12},{\"id\":\"2008\",\"title\":\"2008\",\"count\":1}],\"registered\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":21},{\"id\":\"2019\",\"title\":\"2019\",\"count\":61},{\"id\":\"2018\",\"title\":\"2018\",\"count\":2}],\"providers\":[{\"id\":\"exlibris\",\"title\":\"EXLIBRIS\",\"count\":67},{\"id\":\"datacite\",\"title\":\"DataCite\",\"count\":17}],\"clients\":[{\"id\":\"exlibris.esploro\",\"title\":\"ESPLORO\",\"count\":67},{\"id\":\"datacite.datacite\",\"title\":\"DataCite Repository\",\"count\":15},{\"id\":\"datacite.test\",\"title\":\"DataCite Test Repository\",\"count\":2}],\"affiliations\":[{\"id\":\"ror.org/04wxnsj81\",\"title\":\"DataCite\",\"count\":1}],\"prefixes\":[{\"id\":\"10.21367\",\"title\":\"10.21367\",\"count\":67},{\"id\":\"10.70001\",\"title\":\"10.70001\",\"count\":12},{\"id\":\"10.14454\",\"title\":\"10.14454\",\"count\":2},{\"id\":\"10.80225\",\"title\":\"10.80225\",\"count\":2},{\"id\":\"10.5438\",\"title\":\"10.5438\",\"count\":1}],\"certificates\":[],\"schemaVersions\":[{\"id\":\"4\",\"title\":\"Schema 4\",\"count\":34}],\"linkChecksStatus\":[{\"id\":\"200\",\"title\":\"200\",\"count\":7}],\"citations\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":16}],\"views\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":1662}],\"downloads\":[{\"id\":\"2011\",\"title\":\"2011\",\"count\":846}]},\"links\":{\"self\":\"https://api.test.datacite.org/dois?user-id=0000-0003-1419-2405&user_id=0000-0003-1419-2405\",\"next\":\"https://api.test.datacite.org/dois?page%5Bnumber%5D=2&page%5Bsize%5D=25\"}}" }, "cookies": [], "headers": [ @@ -126,8 +126,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:37.260Z", - "time": 251, + "startedDateTime": "2020-05-04T16:42:23.831Z", + "time": 250, "timings": { "blocked": -1, "connect": -1, @@ -135,7 +135,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 251 + "wait": 250 } } ], diff --git a/recordings/Acceptance-user-user_408143808/visiting-users_37556140/recording.har b/recordings/Acceptance-user-user_408143808/visiting-users_37556140/recording.har index ff05b4434..bb0d4bc34 100644 --- a/recordings/Acceptance-user-user_408143808/visiting-users_37556140/recording.har +++ b/recordings/Acceptance-user-user_408143808/visiting-users_37556140/recording.har @@ -3,7 +3,7 @@ "_recordingName": "Acceptance | user | user/visiting users", "browser": { "name": "Chrome", - "version": "81.0.4044.122" + "version": "81.0.4044.129" }, "creator": { "comment": "persister:rest", @@ -67,7 +67,7 @@ "content": { "mimeType": "application/json; charset=utf-8", "size": 8217, - "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":66890,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" + "text": "{\"data\":[{\"id\":\"0000-0001-9354-2586\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dongmei\",\"familyName\":\" Deng\",\"name\":\"Dongmei Deng\",\"orcid\":\"https://orcid.org/0000-0001-9354-2586\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:40:00.000Z\",\"updated\":\"2020-02-09T17:40:00.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0045-3769\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Bernard\",\"familyName\":\"'t Hart\",\"name\":\"Bernard Marius 't Hart\",\"orcid\":\"https://orcid.org/0000-0002-0045-3769\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:11.000Z\",\"updated\":\"2020-02-09T17:38:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2220-6072\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Michael\",\"familyName\":\"'t Sas-Rolfes\",\"name\":\"Michael 't Sas-Rolfes\",\"orcid\":\"https://orcid.org/0000-0002-2220-6072\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-15T16:50:05.000Z\",\"updated\":\"2017-12-15T16:50:05.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-1564-2260\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramadiani\",\"familyName\":\".\",\"name\":\"Ramadiani .\",\"orcid\":\"https://orcid.org/0000-0003-1564-2260\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-04-01T11:06:30.000Z\",\"updated\":\"2018-04-01T18:22:06.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6694-1650\",\"type\":\"users\",\"attributes\":{\"givenName\":\"A.F.M. Sajidul Qadir\",\"familyName\":\".\",\"name\":\"A.F.M. Sajidul Qadir .\",\"orcid\":\"https://orcid.org/0000-0002-6694-1650\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-24T08:23:11.000Z\",\"updated\":\"2017-12-24T08:23:11.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6097-6115\",\"type\":\"users\",\"attributes\":{\"givenName\":\"?\",\"familyName\":\"?\",\"name\":\"? ?\",\"orcid\":\"https://orcid.org/0000-0002-6097-6115\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2019-12-06T20:40:58.000Z\",\"updated\":\"2019-12-06T20:40:59.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-6116-594X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Senthil Kumar\",\"familyName\":\"A\",\"name\":\"Senthil Kumar A\",\"orcid\":\"https://orcid.org/0000-0001-6116-594X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-11-17T11:57:10.000Z\",\"updated\":\"2015-11-17T11:57:10.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-6909-1823\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ramesh\",\"familyName\":\"A\",\"name\":\"Ramesh A\",\"orcid\":\"https://orcid.org/0000-0002-6909-1823\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-01T11:08:45.000Z\",\"updated\":\"2017-11-13T15:59:45.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-2611-5178\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Andrew Roobert\",\"familyName\":\"A\",\"name\":\"Andrew Roobert A\",\"orcid\":\"https://orcid.org/0000-0002-2611-5178\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-16T18:34:37.000Z\",\"updated\":\"2018-01-16T18:34:37.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8778-9902\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ebinesh\",\"familyName\":\"A\",\"name\":\"Ebinesh A.\",\"orcid\":\"https://orcid.org/0000-0001-8778-9902\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-04-27T05:32:24.000Z\",\"updated\":\"2016-04-27T05:32:24.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8707-9927\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sheik Abdullah\",\"familyName\":\"A\",\"name\":\"Sheik Abdullah A\",\"orcid\":\"https://orcid.org/0000-0001-8707-9927\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-10-20T09:19:56.000Z\",\"updated\":\"2017-10-20T09:19:56.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0357-8572\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Aadhityan\",\"familyName\":\"A\",\"name\":\"Aadhityan A\",\"orcid\":\"https://orcid.org/0000-0003-0357-8572\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-13T11:56:36.000Z\",\"updated\":\"2016-03-13T11:56:36.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3722-7084\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Hélde\",\"familyName\":\"A Domingos\",\"name\":\"Hélde A. Domingos\",\"orcid\":\"https://orcid.org/0000-0003-3722-7084\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-06-20T21:27:00.000Z\",\"updated\":\"2017-06-20T21:28:02.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3173-8852\",\"type\":\"users\",\"attributes\":{\"givenName\":\"muna\",\"familyName\":\"A M Elnemr\",\"name\":\"muna A M Elnemr\",\"orcid\":\"https://orcid.org/0000-0003-3173-8852\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-01-24T11:32:21.000Z\",\"updated\":\"2018-01-24T11:36:09.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-0320-360X\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Dr Abba\",\"familyName\":\"A. Abba\",\"name\":\"Dr Abba A. Abba\",\"orcid\":\"https://orcid.org/0000-0002-0320-360X\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-05-11T18:19:20.000Z\",\"updated\":\"2018-05-11T18:19:20.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-4166-4263\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Sreejith\",\"familyName\":\"A. G.\",\"name\":\"Sreejith A. G.\",\"orcid\":\"https://orcid.org/0000-0002-4166-4263\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-01T04:46:18.000Z\",\"updated\":\"2016-11-01T04:46:18.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-9149-7371\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ignacio\",\"familyName\":\"A. Lazagabaster\",\"name\":\"Ignacio A. Lazagabaster\",\"orcid\":\"https://orcid.org/0000-0001-9149-7371\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-11-21T22:46:06.000Z\",\"updated\":\"2016-11-21T22:46:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7699-5962\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Khumran\",\"familyName\":\"A. M.\",\"name\":\"Khumran A. M.\",\"orcid\":\"https://orcid.org/0000-0001-7699-5962\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2015-12-22T16:39:09.000Z\",\"updated\":\"2015-12-22T16:39:13.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-5204-4457\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Everton\",\"familyName\":\"A. Maciel\",\"name\":\"Everton A. Maciel\",\"orcid\":\"https://orcid.org/0000-0002-5204-4457\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-10-13T00:26:01.000Z\",\"updated\":\"2016-10-13T00:26:01.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-7641-8655\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jucilene A.\",\"familyName\":\"A. Monteiro\",\"name\":\"Jucilene A. A. Monteiro\",\"orcid\":\"https://orcid.org/0000-0001-7641-8655\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-19T22:38:40.000Z\",\"updated\":\"2018-02-19T22:38:40.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-1702-8929\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Belal\",\"familyName\":\"A. Rakhieh\",\"name\":\"Belal A. Rakhieh\",\"orcid\":\"https://orcid.org/0000-0002-1702-8929\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2018-02-08T17:20:57.000Z\",\"updated\":\"2018-02-08T17:20:57.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-3475-0363\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Seidu\",\"familyName\":\"A. Richard\",\"name\":\"Seidu A. Richard\",\"orcid\":\"https://orcid.org/0000-0003-3475-0363\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-12-31T16:16:23.000Z\",\"updated\":\"2017-12-31T16:16:23.000Z\"},\"relationships\":{}},{\"id\":\"0000-0003-0057-4752\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Ali\",\"familyName\":\"A. Semendary\",\"name\":\"Ali A. Semendary\",\"orcid\":\"https://orcid.org/0000-0003-0057-4752\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2020-02-09T17:38:26.000Z\",\"updated\":\"2020-02-09T17:38:26.000Z\"},\"relationships\":{}},{\"id\":\"0000-0001-8331-1389\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Peter\",\"familyName\":\"Aaby\",\"name\":\"Peter Aaby\",\"orcid\":\"https://orcid.org/0000-0001-8331-1389\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2017-09-26T08:01:43.000Z\",\"updated\":\"2017-09-26T08:01:43.000Z\"},\"relationships\":{}},{\"id\":\"0000-0002-3260-7005\",\"type\":\"users\",\"attributes\":{\"givenName\":\"Jesper\",\"familyName\":\"Aagaard\",\"name\":\"Jesper Aagaard\",\"orcid\":\"https://orcid.org/0000-0002-3260-7005\",\"github\":null,\"roleId\":\"user\",\"isActive\":false,\"created\":\"2016-03-10T19:26:25.000Z\",\"updated\":\"2016-03-10T19:26:25.000Z\"},\"relationships\":{}}],\"meta\":{\"total\":67002,\"totalPages\":400,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=1&page%5Bsize%5D=25&provider-id=&query=&repository-id=&size=25&sort=\",\"next\":\"https://api.test.datacite.org/users?page%5Bnumber%5D=2&page%5Bsize%5D=25&query=&sort=\"}}" }, "cookies": [], "headers": [ @@ -86,8 +86,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.850Z", - "time": 103, + "startedDateTime": "2020-05-04T16:42:23.406Z", + "time": 102, "timings": { "blocked": -1, "connect": -1, @@ -95,7 +95,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 103 + "wait": 102 } }, { @@ -154,8 +154,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.965Z", - "time": 112, + "startedDateTime": "2020-05-04T16:42:23.530Z", + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -163,7 +163,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 112 + "wait": 108 } }, { @@ -213,7 +213,7 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-04-23T07:40:36.965Z", + "startedDateTime": "2020-05-04T16:42:23.530Z", "time": 117, "timings": { "blocked": -1, diff --git a/testem-electron.js b/testem-electron.js deleted file mode 100644 index 4a6cbcf15..000000000 --- a/testem-electron.js +++ /dev/null @@ -1,31 +0,0 @@ -/* eslint-env node */ -module.exports = { - test_page: 'tests/index.html?hidepassed', - disable_watching: true, - launchers: { - Electron: require('ember-electron/lib/test-support/test-runner'), - }, - launch_in_ci: [ - 'Electron', - ], - launch_in_dev: [ - 'Electron', - ], - browser_args: { - Electron: { - // Note: Some these Chrome options may not be supported in Electron - // See https://electronjs.org/docs/api/chrome-command-line-switches - ci: [ - // --no-sandbox may be needed when running inside a container - process.env.CI ? '--no-sandbox' : null, - '--headless', - '--disable-gpu', - '--disable-dev-shm-usage', - '--disable-software-rasterizer', - '--mute-audio', - '--remote-debugging-port=0', - '--window-size=1440,900', - ].filter(Boolean), - }, - }, -}; From 8091195e867e2ebb56ea35d3cf868bba0b0b9e58 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Mon, 4 May 2020 19:10:46 +0200 Subject: [PATCH 4/5] update model --- app/components/doi-alternate-identifier.js | 2 +- app/controllers/dois/show/modify.js | 2 +- app/controllers/repositories/show/dois/upload.js | 2 +- app/models/alternate-identifier.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/components/doi-alternate-identifier.js b/app/components/doi-alternate-identifier.js index 05fa01c9a..77cd22e32 100644 --- a/app/components/doi-alternate-identifier.js +++ b/app/components/doi-alternate-identifier.js @@ -49,7 +49,7 @@ export default Component.extend({ this.fragment.set('alternativeIdentifierType', alternateIdentifierType); this.set('alternateIdentifierTypes', alternateIdentifierTypeList); }, - deleteIdentifier() { + deleteAlternateIdentifier() { this.model.get('alternateIdentifiers').removeObject(this.fragment); }, }, diff --git a/app/controllers/dois/show/modify.js b/app/controllers/dois/show/modify.js index d055f22a4..33661c66a 100644 --- a/app/controllers/dois/show/modify.js +++ b/app/controllers/dois/show/modify.js @@ -39,7 +39,7 @@ export default Controller.extend({ doi.set('language', null); doi.set('subjects', null); doi.set('contributors', null); - doi.set('identifiers', null); + doi.set('alternateIdentifiers', null); doi.set('relatedIdentifiers', null); doi.set('fundingReferences', null); doi.set('geoLocations', null); diff --git a/app/controllers/repositories/show/dois/upload.js b/app/controllers/repositories/show/dois/upload.js index 68df3acaf..715ca35a2 100644 --- a/app/controllers/repositories/show/dois/upload.js +++ b/app/controllers/repositories/show/dois/upload.js @@ -31,7 +31,7 @@ export default Controller.extend({ doi.set('subjects', null); doi.set('language', null); doi.set('contributors', null); - doi.set('identifiers', null); + doi.set('alternateIdentifiers', null); doi.set('relatedIdentifiers', null); doi.set('fundingReferences', null); doi.set('geoLocations', null); diff --git a/app/models/alternate-identifier.js b/app/models/alternate-identifier.js index 0322721e8..2819fc45d 100644 --- a/app/models/alternate-identifier.js +++ b/app/models/alternate-identifier.js @@ -9,8 +9,8 @@ const Validations = buildValidations({ validator('presence', { presence: true, message: 'Alternate Identifier must include Identifier Type', - disabled: computed('model.identifier', function() { - return isBlank(this.model.get('identifier')); + disabled: computed('model.alternateIdentifier', function() { + return isBlank(this.model.get('alternateIdentifier')); }), }), ], From 73c25e7a359874a1058dad359e99b0e1cb9ed5a1 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Mon, 4 May 2020 19:51:37 +0200 Subject: [PATCH 5/5] fix variable names --- app/components/doi-alternate-identifier.js | 7 +- .../create-draft-doi_4112297062/recording.har | 989 ++++++++++++++++++ .../recording.har | 214 +++- .../recording.har | 214 +++- 4 files changed, 1343 insertions(+), 81 deletions(-) create mode 100644 recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har diff --git a/app/components/doi-alternate-identifier.js b/app/components/doi-alternate-identifier.js index 77cd22e32..b53954ce0 100644 --- a/app/components/doi-alternate-identifier.js +++ b/app/components/doi-alternate-identifier.js @@ -34,7 +34,7 @@ export default Component.extend({ if (!this.selected.includes(select.searchText)) { this.alternateIdentifierTypes.push(select.searchText); select.actions.choose(select.searchText); - this.fragment.set('alternativeIdentifierType', select.searchText); + this.fragment.set('alternateIdentifierType', select.searchText); this.set('alternateIdentifierTypes', alternateIdentifierTypeList); } } @@ -42,11 +42,8 @@ export default Component.extend({ updateAlternateIdentifier(value) { this.fragment.set('alternateIdentifier', value); }, - updateAlternateIdentifierType(value) { - this.fragment.set('alternativeIdentifierType', value); - }, selectAlternateIdentifierType(alternateIdentifierType) { - this.fragment.set('alternativeIdentifierType', alternateIdentifierType); + this.fragment.set('alternateIdentifierType', alternateIdentifierType); this.set('alternateIdentifierTypes', alternateIdentifierTypeList); }, deleteAlternateIdentifier() { diff --git a/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har new file mode 100644 index 000000000..f28b0c4a0 --- /dev/null +++ b/recordings/Acceptance-client_admin-doi_1416311633/create-draft-doi_4112297062/recording.har @@ -0,0 +1,989 @@ +{ + "log": { + "_recordingName": "Acceptance | client_admin | doi/create draft doi", + "browser": { + "name": "Chrome", + "version": "81.0.4044.122" + }, + "creator": { + "comment": "persister:rest", + "name": "Polly.JS", + "version": "4.0.4" + }, + "entries": [ + { + "_id": "3d1a3b7011a9b276f7ae3fafd4a4855c", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 804, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "include", + "value": "provider" + } + ], + "url": "https://api.test.datacite.org/repositories/datacite.test?include=provider" + }, + "response": { + "bodySize": 5996, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 5996, + "text": "{\"data\":{\"id\":\"datacite.test\",\"type\":\"repositories\",\"attributes\":{\"name\":\"DataCite Test Repository\",\"symbol\":\"DATACITE.TEST\",\"re3data\":null,\"opendoar\":null,\"year\":2017,\"systemEmail\":\"mfenner@datacite.org\",\"alternateName\":null,\"description\":\"datacite196\",\"clientType\":\"repository\",\"repositoryType\":[],\"language\":[],\"certificate\":[],\"domains\":\"*\",\"issn\":{},\"url\":null,\"created\":\"2017-07-13T15:15:33.000Z\",\"updated\":\"2020-05-04T16:42:11.000Z\",\"isActive\":true,\"hasPassword\":true,\"serviceContact\":{}},\"relationships\":{\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"providers\"}},\"prefixes\":{\"data\":[{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]}}},\"meta\":{\"doiCount\":47,\"prefixCount\":2},\"included\":[{\"id\":\"datacite\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite\",\"displayName\":\"DataCite\",\"symbol\":\"DATACITE\",\"website\":\"https://datacite.org\",\"systemEmail\":\"support@datacite.org\",\"groupEmail\":null,\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium_organization\",\"organizationType\":null,\"focusArea\":null,\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{},\"secondaryServiceContact\":{},\"votingContact\":{},\"created\":\"2011-12-07T13:41:07.000Z\",\"updated\":\"2020-04-24T18:52:25.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.datacite\",\"type\":\"clients\"},{\"id\":\"datacite.pure\",\"type\":\"clients\"},{\"id\":\"datacite.rda\",\"type\":\"clients\"},{\"id\":\"datacite.harvard\",\"type\":\"clients\"},{\"id\":\"datacite.egi\",\"type\":\"clients\"},{\"id\":\"datacite.elsevier\",\"type\":\"clients\"},{\"id\":\"datacite.atmire\",\"type\":\"clients\"},{\"id\":\"datacite.cmcc\",\"type\":\"clients\"},{\"id\":\"datacite.axiom\",\"type\":\"clients\"},{\"id\":\"datacite.unibz\",\"type\":\"clients\"},{\"id\":\"datacite.edi\",\"type\":\"clients\"},{\"id\":\"datacite.nus\",\"type\":\"clients\"},{\"id\":\"datacite.test\",\"type\":\"clients\"},{\"id\":\"datacite.dataone\",\"type\":\"clients\"},{\"id\":\"datacite.ucb\",\"type\":\"clients\"},{\"id\":\"datacite.bl\",\"type\":\"clients\"},{\"id\":\"datacite.dce\",\"type\":\"clients\"},{\"id\":\"datacite.unavco\",\"type\":\"clients\"},{\"id\":\"datacite.sbgrid\",\"type\":\"clients\"},{\"id\":\"datacite.uva\",\"type\":\"clients\"},{\"id\":\"datacite.samson\",\"type\":\"clients\"},{\"id\":\"datacite.osu\",\"type\":\"clients\"},{\"id\":\"datacite.lcrnz\",\"type\":\"clients\"},{\"id\":\"datacite.nist\",\"type\":\"clients\"},{\"id\":\"datacite.ntu\",\"type\":\"clients\"},{\"id\":\"datacite.transfer\",\"type\":\"clients\"},{\"id\":\"datacite.esrf\",\"type\":\"clients\"},{\"id\":\"datacite.globus\",\"type\":\"clients\"},{\"id\":\"datacite.rph\",\"type\":\"clients\"},{\"id\":\"datacite.dcppc\",\"type\":\"clients\"},{\"id\":\"datacite.dctest\",\"type\":\"clients\"},{\"id\":\"datacite.roce\",\"type\":\"clients\"},{\"id\":\"datacite.sfl\",\"type\":\"clients\"},{\"id\":\"datacite.hbp\",\"type\":\"clients\"},{\"id\":\"datacite.kaust\",\"type\":\"clients\"},{\"id\":\"datacite.nasa\",\"type\":\"clients\"},{\"id\":\"datacite.vivli\",\"type\":\"clients\"},{\"id\":\"datacite.bri\",\"type\":\"clients\"},{\"id\":\"datacite.uoregon\",\"type\":\"clients\"},{\"id\":\"datacite.csc\",\"type\":\"clients\"},{\"id\":\"datacite.noaa\",\"type\":\"clients\"},{\"id\":\"datacite.vt\",\"type\":\"clients\"},{\"id\":\"datacite.uwyo\",\"type\":\"clients\"},{\"id\":\"datacite.ucdirl\",\"type\":\"clients\"},{\"id\":\"datacite.ornl\",\"type\":\"clients\"},{\"id\":\"datacite.wotr\",\"type\":\"clients\"},{\"id\":\"datacite.ghsl\",\"type\":\"clients\"},{\"id\":\"datacite.topmed\",\"type\":\"clients\"},{\"id\":\"datacite.argon\",\"type\":\"clients\"},{\"id\":\"datacite.nitrogen\",\"type\":\"clients\"},{\"id\":\"datacite.ddri\",\"type\":\"clients\"},{\"id\":\"datacite.testmary\",\"type\":\"clients\"},{\"id\":\"datacite.services\",\"type\":\"clients\"},{\"id\":\"datacite.mary\",\"type\":\"clients\"},{\"id\":\"datacite.drexel\",\"type\":\"clients\"},{\"id\":\"datacite.cifor\",\"type\":\"clients\"},{\"id\":\"datacite.sarla\",\"type\":\"clients\"},{\"id\":\"datacite.matt\",\"type\":\"clients\"},{\"id\":\"datacite.becker\",\"type\":\"clients\"},{\"id\":\"datacite.ljwrdm\",\"type\":\"clients\"},{\"id\":\"datacite.wygyke\",\"type\":\"clients\"},{\"id\":\"datacite.paul\",\"type\":\"clients\"}]},\"prefixes\":{\"data\":[{\"id\":\"10.5438\",\"type\":\"prefixes\"},{\"id\":\"10.0138\",\"type\":\"prefixes\"},{\"id\":\"10.15497\",\"type\":\"prefixes\"},{\"id\":\"10.0158\",\"type\":\"prefixes\"},{\"id\":\"10.0159\",\"type\":\"prefixes\"},{\"id\":\"10.24367\",\"type\":\"prefixes\"},{\"id\":\"10.24365\",\"type\":\"prefixes\"},{\"id\":\"10.24364\",\"type\":\"prefixes\"},{\"id\":\"10.24409\",\"type\":\"prefixes\"},{\"id\":\"10.24360\",\"type\":\"prefixes\"},{\"id\":\"10.24361\",\"type\":\"prefixes\"},{\"id\":\"10.24408\",\"type\":\"prefixes\"},{\"id\":\"10.24362\",\"type\":\"prefixes\"},{\"id\":\"10.24407\",\"type\":\"prefixes\"},{\"id\":\"10.24363\",\"type\":\"prefixes\"},{\"id\":\"10.24354\",\"type\":\"prefixes\"},{\"id\":\"10.24356\",\"type\":\"prefixes\"},{\"id\":\"10.24355\",\"type\":\"prefixes\"},{\"id\":\"10.24357\",\"type\":\"prefixes\"},{\"id\":\"10.24359\",\"type\":\"prefixes\"},{\"id\":\"10.24411\",\"type\":\"prefixes\"},{\"id\":\"10.24410\",\"type\":\"prefixes\"},{\"id\":\"10.24415\",\"type\":\"prefixes\"},{\"id\":\"10.24414\",\"type\":\"prefixes\"},{\"id\":\"10.24413\",\"type\":\"prefixes\"},{\"id\":\"10.24412\",\"type\":\"prefixes\"},{\"id\":\"10.24419\",\"type\":\"prefixes\"},{\"id\":\"10.24418\",\"type\":\"prefixes\"},{\"id\":\"10.24417\",\"type\":\"prefixes\"},{\"id\":\"10.24416\",\"type\":\"prefixes\"},{\"id\":\"10.24420\",\"type\":\"prefixes\"},{\"id\":\"10.24422\",\"type\":\"prefixes\"},{\"id\":\"10.24421\",\"type\":\"prefixes\"},{\"id\":\"10.24427\",\"type\":\"prefixes\"},{\"id\":\"10.0310\",\"type\":\"prefixes\"},{\"id\":\"10.0311\",\"type\":\"prefixes\"},{\"id\":\"10.0312\",\"type\":\"prefixes\"},{\"id\":\"10.0330\",\"type\":\"prefixes\"},{\"id\":\"10.0307\",\"type\":\"prefixes\"},{\"id\":\"10.0308\",\"type\":\"prefixes\"},{\"id\":\"10.0309\",\"type\":\"prefixes\"},{\"id\":\"10.0320\",\"type\":\"prefixes\"},{\"id\":\"10.0321\",\"type\":\"prefixes\"},{\"id\":\"10.0322\",\"type\":\"prefixes\"},{\"id\":\"10.70002\",\"type\":\"prefixes\"},{\"id\":\"10.70001\",\"type\":\"prefixes\"},{\"id\":\"10.70048\",\"type\":\"prefixes\"},{\"id\":\"10.33575\",\"type\":\"prefixes\"},{\"id\":\"10.33576\",\"type\":\"prefixes\"},{\"id\":\"10.70126\",\"type\":\"prefixes\"},{\"id\":\"10.7968\",\"type\":\"prefixes\"},{\"id\":\"10.80067\",\"type\":\"prefixes\"},{\"id\":\"10.80220\",\"type\":\"prefixes\"},{\"id\":\"10.80225\",\"type\":\"prefixes\"}]},\"consortium\":{\"data\":{\"id\":\"dc\",\"type\":\"providers\"}}}}]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:50.863Z", + "time": 144, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 144 + } + }, + { + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 836, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + }, + "response": { + "bodySize": 1303, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:51.439Z", + "time": 127, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 127 + } + }, + { + "_id": "c92e7d824182d2c7fdd4cd17c64b68f9", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 773, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://api.test.datacite.org/providers/dc" + }, + "response": { + "bodySize": 1713, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1713, + "text": "{\"data\":{\"id\":\"dc\",\"type\":\"providers\",\"attributes\":{\"name\":\"DataCite Consortium\",\"displayName\":\"DataCite Consortium\",\"symbol\":\"DC\",\"website\":\"https://datacite.org\",\"systemEmail\":\"info@datacite.org\",\"groupEmail\":\"info@datacite.org\",\"description\":null,\"region\":\"EMEA\",\"country\":\"DE\",\"logoUrl\":null,\"memberType\":\"consortium\",\"organizationType\":\"serviceProvider\",\"focusArea\":\"general\",\"nonProfitStatus\":\"non-profit\",\"isActive\":true,\"hasPassword\":true,\"joined\":null,\"rorId\":\"https://ror.org/04wxnsj81\",\"technicalContact\":{},\"secondaryTechnicalContact\":{},\"billingContact\":{},\"secondaryBillingContact\":{},\"serviceContact\":{\"email\":\"info@datacite.org\"},\"secondaryServiceContact\":{},\"votingContact\":{\"email\":\"info@datacite.org\",\"givenName\":\"John\",\"familyName\":\"Doe\"},\"created\":\"2019-08-06T07:04:35.000Z\",\"updated\":\"2020-05-04T16:41:52.000Z\"},\"relationships\":{\"clients\":{\"data\":[]},\"prefixes\":{\"data\":[]},\"consortiumOrganizations\":{\"data\":[{\"id\":\"demo\",\"type\":\"providers\"},{\"id\":\"datacite\",\"type\":\"providers\"},{\"id\":\"sml\",\"type\":\"providers\"},{\"id\":\"bibtag\",\"type\":\"providers\"},{\"id\":\"workshop\",\"type\":\"providers\"},{\"id\":\"bka\",\"type\":\"providers\"},{\"id\":\"testmary\",\"type\":\"providers\"},{\"id\":\"rphco\",\"type\":\"providers\"},{\"id\":\"testaa\",\"type\":\"providers\"},{\"id\":\"marytest\",\"type\":\"providers\"},{\"id\":\"abcde\",\"type\":\"providers\"},{\"id\":\"uuaa\",\"type\":\"providers\"},{\"id\":\"uuuu\",\"type\":\"providers\"},{\"id\":\"ydtr\",\"type\":\"providers\"},{\"id\":\"vpmj\",\"type\":\"providers\"},{\"id\":\"clyy\",\"type\":\"providers\"},{\"id\":\"mgxi\",\"type\":\"providers\"},{\"id\":\"epow\",\"type\":\"providers\"},{\"id\":\"cnsrtrg\",\"type\":\"providers\"},{\"id\":\"moia\",\"type\":\"providers\"},{\"id\":\"xwpb\",\"type\":\"providers\"}]}}},\"meta\":{\"repositoryCount\":0,\"consortiumOrganizationCount\":21}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:51.439Z", + "time": 269, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 269 + } + }, + { + "_id": "1f2ed9b690e18a122e621204614c336f", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 753, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "prefix", + "value": "10.0330" + } + ], + "url": "https://api.test.datacite.org/dois/random?prefix=10.0330" + }, + "response": { + "bodySize": 30, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 30, + "text": "{\"dois\":[\"10.0330/d4j1-yg23\"]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:51.605Z", + "time": 100, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 100 + } + }, + { + "_id": "4d1cf57852130a759c653ec28a941a86", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 777, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://api.test.datacite.org/prefixes/10.0330" + }, + "response": { + "bodySize": 457, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 457, + "text": "{\"data\":{\"id\":\"10.0330\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.0330\",\"createdAt\":\"2017-02-24T08:08:13.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"provider-prefixes\"}]}}}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:51.605Z", + "time": 131, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 131 + } + }, + { + "_id": "61aa761c419861d116a2ef94fc9749e1", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/d4j1-yg23" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fd4j1-yg23" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fd4j1-yg23\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:51.753Z", + "time": 137, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 137 + } + }, + { + "_id": "9c69df4d8d2a08d32bcaaa32d3811630", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 778, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [], + "url": "https://api.test.datacite.org/prefixes/10.80225" + }, + "response": { + "bodySize": 459, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 459, + "text": "{\"data\":{\"id\":\"10.80225\",\"type\":\"prefixes\",\"attributes\":{\"prefix\":\"10.80225\",\"createdAt\":\"2019-07-03T14:06:37.000Z\"},\"relationships\":{\"clients\":{\"data\":[{\"id\":\"datacite.test\",\"type\":\"clients\"}]},\"providers\":{\"data\":[{\"id\":\"datacite\",\"type\":\"providers\"}]},\"clientPrefixes\":{\"data\":[{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"client-prefixes\"}]},\"providerPrefixes\":{\"data\":[{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"provider-prefixes\"}]}}}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:51.956Z", + "time": 104, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 104 + } + }, + { + "_id": "61aa761c419861d116a2ef94fc9749e1", + "_order": 1, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/d4j1-yg23" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fd4j1-yg23" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fd4j1-yg23\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.092Z", + "time": 96, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 96 + } + }, + { + "_id": "fe47109f63d661c5d5ff1d67928c35b8", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/2pwf-ry88" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.235Z", + "time": 108, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 108 + } + }, + { + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 1, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 836, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + }, + "response": { + "bodySize": 1303, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.371Z", + "time": 352, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 352 + } + }, + { + "_id": "fe47109f63d661c5d5ff1d67928c35b8", + "_order": 1, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/2pwf-ry88" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.568Z", + "time": 171, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 171 + } + }, + { + "_id": "b4f1065d3b90a2f7503fedbdc6c38523", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 657, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" + }, + { + "name": "accept", + "value": "application/vnd.api+json" + } + ], + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.80225/2pwf-ry88\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" + }, + "response": { + "bodySize": 71, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 71, + "text": "{\"errors\":[{\"source\":\"doi\",\"title\":\"This DOI has already been taken\"}]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 74, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 422, + "statusText": "Unprocessable Entity" + }, + "startedDateTime": "2020-05-04T17:49:52.568Z", + "time": 231, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 231 + } + }, + { + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", + "_order": 2, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 836, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" + } + ], + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" + }, + "response": { + "bodySize": 1303, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.568Z", + "time": 297, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 297 + } + }, + { + "_id": "fe47109f63d661c5d5ff1d67928c35b8", + "_order": 2, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/2pwf-ry88" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.762Z", + "time": 110, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 110 + } + }, + { + "_id": "fe47109f63d661c5d5ff1d67928c35b8", + "_order": 3, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/2pwf-ry88" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F2pwf-ry88\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:52.860Z", + "time": 92, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 92 + } + } + ], + "pages": [], + "version": "1.2" + } +} diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har index d85f8b5d7..05e220956 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-format_2886218466/recording.har @@ -392,39 +392,39 @@ } }, { - "_id": "50ceb7b3433a8805f0d58ff0a0ec8bd3", - "_order": 0, + "_id": "76bdf5477d41fe062c5b941b0c9e53d5", + "_order": 1, "cache": {}, "request": { - "bodySize": 656, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 793, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/20fp-vb66" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66" }, "response": { - "bodySize": 1979, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1979, - "text": "{\"data\":{\"id\":\"10.0330/20fp-vb66\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"prefix\":\"10.0330\",\"suffix\":\"20fp-vb66\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC8yMEZQLVZCNjY8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:20.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:20.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/20fp-vb66\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66\"}}" }, "cookies": [], "headers": [ @@ -440,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-05-04T16:40:20.495Z", - "time": 182, + "startedDateTime": "2020-05-04T16:40:20.498Z", + "time": 94, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 182 + "wait": 94 } }, { - "_id": "76bdf5477d41fe062c5b941b0c9e53d5", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 1, "cache": {}, "request": { @@ -472,23 +472,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 793, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "id", - "value": "model.prefix/20fp-vb66" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 136, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -508,7 +518,7 @@ "statusText": "OK" }, "startedDateTime": "2020-05-04T16:40:20.498Z", - "time": 94, + "time": 108, "timings": { "blocked": -1, "connect": -1, @@ -516,12 +526,76 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 94 + "wait": 108 + } + }, + { + "_id": "56d34bf97d8188aaa74950556955dbc7", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 662, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" + }, + { + "name": "accept", + "value": "application/vnd.api+json" + } + ], + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/20fp-vb66\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[\"json\"],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" + }, + "response": { + "bodySize": 71, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 71, + "text": "{\"errors\":[{\"source\":\"doi\",\"title\":\"This DOI has already been taken\"}]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 74, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 422, + "statusText": "Unprocessable Entity" + }, + "startedDateTime": "2020-05-04T17:49:46.046Z", + "time": 107, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 107 } }, { "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_order": 2, "cache": {}, "request": { "bodySize": 0, @@ -581,8 +655,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-05-04T16:40:20.498Z", - "time": 108, + "startedDateTime": "2020-05-04T17:49:46.046Z", + "time": 712, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +664,71 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 108 + "wait": 712 + } + }, + { + "_id": "76bdf5477d41fe062c5b941b0c9e53d5", + "_order": 2, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/20fp-vb66" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2F20fp-vb66\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:46.208Z", + "time": 104, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 104 } } ], diff --git a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har index d71f103a9..9704a5081 100644 --- a/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har +++ b/recordings/Acceptance-client_admin-doi_1416311633/visiting-the-form-and-adding-size_686014060/recording.har @@ -392,39 +392,39 @@ } }, { - "_id": "c6df921f33b0a81bae512e40bcc12918", - "_order": 0, + "_id": "0a3e4d60499ce00b2e82972c7e0faf50", + "_order": 1, "cache": {}, "request": { - "bodySize": 656, + "bodySize": 0, "cookies": [], "headers": [ - { - "name": "content-type", - "value": "application/vnd.api+json;charset=utf-8" - }, { "name": "accept", "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" } ], - "headersSize": 780, + "headersSize": 793, "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/vnd.api+json;charset=utf-8", - "params": [], - "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" - }, - "queryString": [], - "url": "https://api.test.datacite.org/dois" + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/m225-0b29" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29" }, "response": { - "bodySize": 1979, + "bodySize": 136, "content": { "mimeType": "application/json; charset=utf-8", - "size": 1979, - "text": "{\"data\":{\"id\":\"10.0330/m225-0b29\",\"type\":\"dois\",\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"prefix\":\"10.0330\",\"suffix\":\"m225-0b29\",\"identifiers\":[],\"alternateIdentifiers\":[],\"creators\":[{\"nameType\":null,\"nameIdentifiers\":[],\"name\":null,\"givenName\":null,\"familyName\":null,\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"container\":{},\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"dates\":[],\"language\":null,\"types\":{},\"relatedIdentifiers\":[],\"sizes\":[],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":\"PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHJlc291cmNlIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vZGF0YWNpdGUub3JnL3NjaGVtYS9rZXJuZWwtNCBodHRwOi8vc2NoZW1hLmRhdGFjaXRlLm9yZy9tZXRhL2tlcm5lbC00L21ldGFkYXRhLnhzZCI+CiAgPGlkZW50aWZpZXIgaWRlbnRpZmllclR5cGU9IkRPSSI+MTAuMDMzMC9NMjI1LTBCMjk8L2lkZW50aWZpZXI+CiAgPGNyZWF0b3JzPgogICAgPGNyZWF0b3I+CiAgICAgIDxjcmVhdG9yTmFtZS8+CiAgICA8L2NyZWF0b3I+CiAgPC9jcmVhdG9ycz4KICA8dGl0bGVzLz4KICA8cHVibGlzaGVyLz4KICA8cHVibGljYXRpb25ZZWFyLz4KICA8c2l6ZXMvPgogIDxmb3JtYXRzLz4KICA8dmVyc2lvbi8+CjwvcmVzb3VyY2U+Cg==\",\"url\":null,\"contentUrl\":null,\"metadataVersion\":0,\"schemaVersion\":null,\"source\":\"fabricaForm\",\"isActive\":false,\"state\":\"draft\",\"reason\":null,\"landingPage\":null,\"viewCount\":0,\"viewsOverTime\":[],\"downloadCount\":0,\"downloadsOverTime\":[],\"referenceCount\":0,\"citationCount\":0,\"citationsOverTime\":[],\"partCount\":0,\"partOfCount\":0,\"versionCount\":0,\"versionOfCount\":0,\"created\":\"2020-05-04T16:40:23.000Z\",\"registered\":null,\"published\":\"\",\"updated\":\"2020-05-04T16:40:23.000Z\"},\"relationships\":{\"client\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"clients\"}},\"media\":{\"data\":{\"id\":\"10.0330/m225-0b29\",\"type\":\"media\"}},\"references\":{\"data\":[]},\"citations\":{\"data\":[]},\"parts\":{\"data\":[]},\"partOf\":{\"data\":[]},\"versions\":{\"data\":[]},\"versionOf\":{\"data\":[]}}}}" + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29\"}}" }, "cookies": [], "headers": [ @@ -440,11 +440,11 @@ "headersSize": 101, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 201, - "statusText": "Created" + "status": 200, + "statusText": "OK" }, - "startedDateTime": "2020-05-04T16:40:22.997Z", - "time": 243, + "startedDateTime": "2020-05-04T16:40:23.000Z", + "time": 118, "timings": { "blocked": -1, "connect": -1, @@ -452,11 +452,11 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 243 + "wait": 118 } }, { - "_id": "0a3e4d60499ce00b2e82972c7e0faf50", + "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", "_order": 1, "cache": {}, "request": { @@ -472,23 +472,33 @@ "value": "text/plain;charset=utf-8" } ], - "headersSize": 793, + "headersSize": 836, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [ { - "name": "id", - "value": "model.prefix/m225-0b29" + "name": "page", + "value": { + "size": "25" + } + }, + { + "name": "repository-id", + "value": "datacite.test" + }, + { + "name": "sort", + "value": "name" } ], - "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29" + "url": "https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name" }, "response": { - "bodySize": 136, + "bodySize": 1303, "content": { "mimeType": "application/json; charset=utf-8", - "size": 136, - "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29\"}}" + "size": 1303, + "text": "{\"data\":[{\"id\":\"02cc3433-6f5a-4a04-89bb-b5545df6bb1e\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-27T15:02:38.000Z\",\"updatedAt\":\"2020-03-27T15:02:38.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"68ed0792-604b-461e-9316-53de84fc41be\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.0330\",\"type\":\"prefix\"}}}},{\"id\":\"56bdfd24-38a7-45a1-9cae-7d4570fc0668\",\"type\":\"repository-prefixes\",\"attributes\":{\"createdAt\":\"2020-03-22T19:59:10.000Z\",\"updatedAt\":\"2020-03-22T19:59:10.000Z\"},\"relationships\":{\"repository\":{\"data\":{\"id\":\"datacite.test\",\"type\":\"repository\"}},\"provider\":{\"data\":{\"id\":\"datacite\",\"type\":\"provider\"}},\"providerPrefix\":{\"data\":{\"id\":\"377cb5fe-98d0-430e-9075-6096ef7f23ec\",\"type\":\"providerPrefix\"}},\"prefix\":{\"data\":{\"id\":\"10.80225\",\"type\":\"prefix\"}}}}],\"meta\":{\"total\":2,\"totalPages\":1,\"page\":1,\"years\":[{\"id\":\"2020\",\"title\":\"2020\",\"count\":2}],\"providers\":[],\"repositories\":[]},\"links\":{\"self\":\"https://api.test.datacite.org/repository-prefixes?page%5Bsize%5D=25&repository-id=datacite.test&sort=name\",\"next\":\"https://api.test.datacite.org/repository-prefixes?page%5Bnumber%5D=2&page%5Bsize%5D=25&repository_id=datacite.test&sort=name\"}}" }, "cookies": [], "headers": [ @@ -508,7 +518,7 @@ "statusText": "OK" }, "startedDateTime": "2020-05-04T16:40:23.000Z", - "time": 118, + "time": 159, "timings": { "blocked": -1, "connect": -1, @@ -516,12 +526,76 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 118 + "wait": 159 + } + }, + { + "_id": "01343d5af39be73bb74c06d0a7d3a75c", + "_order": 0, + "cache": {}, + "request": { + "bodySize": 661, + "cookies": [], + "headers": [ + { + "name": "content-type", + "value": "application/vnd.api+json;charset=utf-8" + }, + { + "name": "accept", + "value": "application/vnd.api+json" + } + ], + "headersSize": 780, + "httpVersion": "HTTP/1.1", + "method": "POST", + "postData": { + "mimeType": "application/vnd.api+json;charset=utf-8", + "params": [], + "text": "{\"data\":{\"attributes\":{\"doi\":\"10.0330/m225-0b29\",\"confirmDoi\":null,\"url\":null,\"creators\":[{\"name\":null,\"givenName\":null,\"familyName\":null,\"nameType\":null,\"nameIdentifiers\":[],\"affiliation\":[]}],\"titles\":[],\"publisher\":null,\"publicationYear\":null,\"subjects\":[],\"contributors\":[],\"alternateIdentifiers\":[],\"dates\":[],\"language\":null,\"relatedIdentifiers\":[],\"sizes\":[\"5kb\"],\"formats\":[],\"version\":null,\"rightsList\":[],\"descriptions\":[],\"geoLocations\":[],\"fundingReferences\":[],\"xml\":null,\"source\":\"fabricaForm\",\"state\":\"draft\",\"reason\":null,\"event\":null,\"mode\":\"new\"},\"relationships\":{\"client\":{\"data\":{\"type\":\"repositories\",\"id\":\"datacite.test\"}}},\"type\":\"dois\"}}" + }, + "queryString": [], + "url": "https://api.test.datacite.org/dois" + }, + "response": { + "bodySize": 71, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 71, + "text": "{\"errors\":[{\"source\":\"doi\",\"title\":\"This DOI has already been taken\"}]}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "no-cache" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 74, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 422, + "statusText": "Unprocessable Entity" + }, + "startedDateTime": "2020-05-04T17:49:47.643Z", + "time": 100, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 100 } }, { "_id": "e0b4fe49cee37123e7d36b9ea81b50c0", - "_order": 1, + "_order": 2, "cache": {}, "request": { "bodySize": 0, @@ -581,8 +655,8 @@ "status": 200, "statusText": "OK" }, - "startedDateTime": "2020-05-04T16:40:23.000Z", - "time": 159, + "startedDateTime": "2020-05-04T17:49:47.644Z", + "time": 96, "timings": { "blocked": -1, "connect": -1, @@ -590,7 +664,71 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 159 + "wait": 96 + } + }, + { + "_id": "0a3e4d60499ce00b2e82972c7e0faf50", + "_order": 2, + "cache": {}, + "request": { + "bodySize": 0, + "cookies": [], + "headers": [ + { + "name": "accept", + "value": "application/vnd.api+json" + }, + { + "name": "content-type", + "value": "text/plain;charset=utf-8" + } + ], + "headersSize": 793, + "httpVersion": "HTTP/1.1", + "method": "GET", + "queryString": [ + { + "name": "id", + "value": "model.prefix/m225-0b29" + } + ], + "url": "https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29" + }, + "response": { + "bodySize": 136, + "content": { + "mimeType": "application/json; charset=utf-8", + "size": 136, + "text": "{\"data\":[],\"meta\":{\"total\":0,\"totalPages\":0,\"page\":1},\"links\":{\"self\":\"https://api.test.datacite.org/dois?id=model.prefix%2Fm225-0b29\"}}" + }, + "cookies": [], + "headers": [ + { + "name": "cache-control", + "value": "max-age=0, private, must-revalidate" + }, + { + "name": "content-type", + "value": "application/json; charset=utf-8" + } + ], + "headersSize": 101, + "httpVersion": "HTTP/1.1", + "redirectURL": "", + "status": 200, + "statusText": "OK" + }, + "startedDateTime": "2020-05-04T17:49:47.784Z", + "time": 71, + "timings": { + "blocked": -1, + "connect": -1, + "dns": -1, + "receive": 0, + "send": 0, + "ssl": -1, + "wait": 71 } } ],